-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.58 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
{
"name": "@rei/vunit",
"description": "Write unit tests against your Vue components using mocha and vue-test-utils",
"version": "6.0.0",
"author": "Alex Perkins <[email protected]>",
"repository": "https://github.com/rei/vunit",
"license": "MIT",
"main": "./index.js",
"scripts": {
"test": "mocha --timeout 8000"
},
"bin": {
"vunit": "./index.js"
},
"engines": {
"node": ">8.0.0"
},
"peerDependencies": {
"@vue/test-utils": "^2.0.0-rc.12"
},
"dependencies": {
"@babel/core": "^7.12.9",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@babel/register": "^7.12.1",
"@vue/compiler-sfc": "^3.2.6",
"babel-loader": "^8.2.2",
"babel-plugin-istanbul": "^6.0.0",
"chai": "^4.2.0",
"chalk": "^4.1.0",
"chokidar": "^3.3.1",
"cross-env": "^5.0.5",
"cross-spawn": "^6.0.5",
"css-loader": "^3.4.2",
"glob": "^7.1.6",
"ignore-styles": "^5.0.1",
"jsdom": "^16.4.0",
"jsdom-global": "^3.0.2",
"mocha": "^8.2.1",
"mochapack": "^2.0.6",
"node-sass": "^4.14.1",
"nyc": "^15.1.0",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"sass-loader": "^8.0.2",
"style-loader": "^1.1.3",
"vue": "^3.2.6",
"vue-loader": "^16.5.0",
"webpack-node-externals": "^1.6.0"
},
"devDependencies": {
"@vue/test-utils": "^2.0.0-rc.12",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-vue": "^6.1.2",
"proxyquire": "^2.1.3",
"webpack": "^4.42.0"
}
}