This repository has been archived by the owner on Dec 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.32 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
77
78
79
80
81
82
83
84
85
86
87
{
"name": "predix-vue-ui-seed",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve --open",
"build": "vue-cli-service build && yarn vulcanize",
"test": "TZ=UTC vue-cli-service test:unit",
"e2e": "vue-cli-service e2e",
"inspect": "vue-cli-service inspect",
"lint": "./node_modules/.bin/vue-cli-service lint",
"vulcanize": "gulp",
"cover": "COVERAGE=true nyc yarn test --reporter mocha-junit-reporter",
"check_focused_tests": "(grep -rq '\\.only' tests/ && echo 'You have it.only() in your tests!' && exit 1) || exit 0"
},
"engines": {
"node": ">=8.9.0"
},
"gitHooks": {
"pre-push": " yarn lint && yarn check_focused_tests"
},
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/mocha": "^5.2.5",
"@types/mocha-steps": "^1.1.1",
"@types/moment-timezone": "^0.5.8",
"@types/moxios": "^0.4.8",
"@types/netmask": "^1.0.30",
"@types/sinon": "^5.0.5",
"@vue/cli-plugin-typescript": "3.0.5",
"@vue/cli-plugin-unit-mocha": "3.0.5",
"@vue/cli-service": "3.0.5",
"@vue/test-utils": "^v1.0.0-beta.24",
"ajv": "^6.5.2",
"axios": "^0.18.0",
"chai": "^4.1.2",
"gulp": "^4.0.0",
"gulp-cachebust": "^0.0.10",
"gulp-htmlmin": "^5.0.1",
"gulp-vulcanize": "^7.0.0",
"https-proxy-agent": "^2.2.1",
"inject-loader": "^4.0.1",
"istanbul-instrumenter-loader": "^3.0.1",
"mocha": "^5.2.0",
"mocha-junit-reporter": "^1.18.0",
"mocha-steps": "^1.1.0",
"moment": "^2.22.2",
"moment-timezone": "^0.5.21",
"moxios": "^0.4.0",
"netmask": "^1.0.6",
"node-sass": "^4.9.3",
"nyc": "^13.0.1",
"sass-loader": "^7.1.0",
"sha.js": "^2.4.11",
"sinon": "^7.1.0",
"typescript": "^3.1.1",
"upath": "^1.0.5",
"vue": "^2.5.17",
"vue-class-component": "^6.0.0",
"vue-property-decorator": "^7.0.0",
"vue-router": "^3.0.1",
"vue-template-compiler": "^2.5.17",
"vuex": "^3.0.1",
"webpack": "^4.18.0",
"webpack-node-externals": "^1.7.2"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"nyc": {
"include": [
"src/**/*.ts",
"src/**/*.js"
],
"instrument": false,
"sourceMap": false,
"reporter": [
"cobertura",
"text-summary",
"text",
"lcov"
],
"all": true
}
}