forked from cypress-io/cypress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.96 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@cypress/vue",
"version": "0.0.0-development",
"description": "Browser-based Component Testing for Vue.js with Cypress.io ✌️🌲",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"build-prod": "yarn build",
"build:watch": "tsc --watch",
"cy:open": "node ../../scripts/cypress open",
"cy:run": "node ../../scripts/cypress run",
"pretest": "yarn build",
"test": "yarn cy:run"
},
"dependencies": {
"@babel/plugin-transform-modules-commonjs": "7.10.4",
"@cypress/code-coverage": "3.8.1",
"@cypress/webpack-preprocessor": "*",
"@intlify/vue-i18n-loader": "1.0.0",
"@vue/test-utils": "1.0.3",
"babel-plugin-istanbul": "6.0.0",
"debug": "4.2.0",
"find-webpack": "2.1.0",
"unfetch": "4.1.0"
},
"devDependencies": {
"@babel/core": "7.9.0",
"@babel/preset-env": "7.9.5",
"axios": "0.19.2",
"babel-loader": "8.1.0",
"css-loader": "3.4.2",
"cypress": "*",
"eslint-plugin-vue": "^6.2.2",
"mocha": "7.1.1",
"tailwindcss": "1.1.4",
"typescript": "3.9.6",
"vue": "2.6.11",
"vue-i18n": "8.9.0",
"vue-loader": "15.9.3",
"vue-router": "3.0.5",
"vue-style-loader": "4.1.2",
"vue-template-compiler": "2.6.11",
"vuex": "3.1.1",
"webpack": "4.42.0"
},
"peerDependencies": {
"babel-loader": "8",
"cypress": ">=4.5.0",
"vue": "2.x"
},
"files": [
"dist/**/*"
],
"engines": {
"node": ">=8"
},
"types": "dist",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cypress-io/cypress.git"
},
"homepage": "https://on.cypress.io/component-testing",
"author": "Gleb Bahmutov <[email protected]>",
"bugs": "https://github.com/cypress-io/cypress/issues/new?assignees=&labels=npm%3A%20%40cypress%2Fvue&template=1-bug-report.md&title=",
"keywords": [
"cypress",
"vue"
],
"publishConfig": {
"registry": "http://registry.npmjs.org/"
},
"ciJobs": [
"npm-vue"
]
}