-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
57 lines (57 loc) · 1.77 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
{
"name": "vue-testing-examples",
"version": "0.0.1-0",
"private": true,
"description": "Advanced testing with vuejs. When you need to go beyond Getting started section and see some real world example with everything that proper tests should have.",
"license": "MIT",
"author": "mcibique (https://github.com/mcibique)",
"scripts": {
"serve": "vue-cli-service serve --open",
"build": "vue-cli-service build",
"test": "nyc vue-cli-service test:unit 'src/**/*.spec.js' --include ./src/bootstrap.js ./test/unit/index.js",
"test:watch": "npm run test -- --watch",
"lint": "vue-cli-service lint"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"dependencies": {
"@babel/runtime": "7.4.5",
"axios": "0.19.0",
"core-js": "3.1.3",
"inversify": "5.0.1",
"inversify-inject-decorators": "3.1.0",
"inversify-vanillajs-helpers": "2.0.0",
"lodash": "4.17.11",
"reflect-metadata": "0.1.13",
"vue": "2.6.10",
"vue-property-decorator": "8.1.1",
"vue-router": "3.0.6",
"vuex": "3.1.1",
"vuex-class": "0.3.2"
},
"devDependencies": {
"@vue/cli-plugin-babel": "3.8.0",
"@vue/cli-plugin-eslint": "3.8.0",
"@vue/cli-plugin-unit-mocha": "3.8.0",
"@vue/cli-service": "3.8.3",
"@vue/eslint-config-standard": "4.0.0",
"@vue/test-utils": "1.0.0-beta.29",
"axios-mock-adapter": "1.16.0",
"babel-plugin-istanbul": "5.1.4",
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"eslint": "5.16.0",
"flush-promises": "1.0.2",
"jsdom": "15.1.1",
"lint-staged": "8.2.1",
"lolex": "4.1.0",
"node-sass": "4.12.0",
"nyc": "14.1.1",
"sass-loader": "7.1.0",
"sinon": "4.5.0",
"sinon-chai": "3.3.0",
"sinon-stub-promise": "4.0.0",
"vue-template-compiler": "2.6.10"
}
}