-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
34 lines (34 loc) · 986 Bytes
/
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
{
"name": "avoriaz-mocha-example",
"version": "1.0.0",
"description": "example project using avoriaz with mocha-webpack to test Vue.js components",
"main": ".eslintrc.js",
"scripts": {
"lint:fix": "standard --env mocha --fix",
"test": "mocha-webpack --webpack-config build/webpack.config.js test --recursive --require test/.setup.js"
},
"author": "Edd Yerburgh",
"license": "MIT",
"devDependencies": {
"avoriaz": "^3.0.0",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"chai": "^4.1.0",
"css-loader": "^0.28.4",
"jsdom": "^11.1.0",
"jsdom-global": "^3.0.2",
"mocha": "^3.4.2",
"mocha-webpack": "next",
"standard": "^10.0.2",
"vue-loader": "^13.0.2",
"vue-template-compiler": "^2.4.2",
"webpack": "^3.4.1",
"webpack-node-externals": "^1.6.0"
},
"dependencies": {
"vue": "^2.4.2"
}
}