forked from codebender828/homo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.62 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
{
"name": "vapper",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"test": "yarn test:unit && yarn test:e2e",
"test:unit": "cross-env NODE_ENV=unittest jest --coverage",
"test:e2e": "cross-env NODE_ENV=e2etest node ./scripts/e2eRunner.js",
"test:stress": "node ./scripts/stressTestRunner.js",
"lint": "standard --fix",
"commit": "git-cz"
},
"repository": "https://github.com/vapperjs/vapper.git",
"author": "HcySunYang <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"@vue/cli-service": "^3.11.0",
"@vue/test-utils": "^1.0.0-beta.29",
"autocannon": "^4.4.1",
"babel-jest": "^24.9.0",
"chalk": "^2.4.2",
"cross-env": "^5.2.0",
"cypress": "^3.4.1",
"cz-lerna-changelog": "^2.0.2",
"execa": "^2.0.4",
"fs-extra": "^8.1.0",
"husky": "^3.0.1",
"jest": "^24.8.0",
"lerna": "^3.14.1",
"lerna-changelog": "^0.8.2",
"lint-staged": "^9.2.0",
"standard": "^13.0.2",
"vue": "^2.6.10",
"vue-router": "^3.1.3",
"vue-template-compiler": "^2.6.10",
"vuex": "^3.1.2",
"wait-on": "^3.3.0"
},
"standard": {
"ignore": [
"__e2e_fixtures__/**",
"examples/**",
"*.ejs"
],
"globals": [
"describe",
"it",
"expect",
"cy"
],
"env": "jest"
},
"lint-staged": {
"*.js": [
"npm run lint",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-lerna-changelog"
}
}
}