forked from vuejs/vue-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.49 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
{
"private": true,
"workspaces": [
"packages/@vue/*",
"packages/test/*",
"packages/vue-cli-version-marker"
],
"scripts": {
"test": "node scripts/test.js",
"pretest": "yarn clean",
"lint": "eslint --fix packages/**/*.js packages/**/bin/*",
"clean": "rimraf packages/test/*",
"sync": "node scripts/syncDeps.js",
"boot": "node scripts/bootstrap.js",
"release": "yarn clean && node scripts/release.js"
},
"gitHooks": {
"pre-commit": "lint-staged",
"commit-msg": "node scripts/verifyCommitMsg.js"
},
"jest": {
"testEnvironment": "node",
"setupFiles": [
"<rootDir>/scripts/testSetup.js"
],
"testPathIgnorePatterns": [
"/template/",
"/packages/test/",
"/temp/",
"/scripts/",
".*.helper.js"
]
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"packages/**/bin/*": [
"eslint --fix",
"git add"
]
},
"devDependencies": {
"babel-core": "7.0.0-bridge.0",
"debug": "^3.1.0",
"eslint": "^4.16.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-vue-libs": "^2.1.0",
"globby": "^8.0.1",
"http-server": "^0.11.1",
"jest": "^22.1.4",
"lerna": "^2.8.0",
"lint-staged": "^6.0.1",
"memfs": "^2.8.0",
"puppeteer": "^1.0.0",
"request": "^2.83.0",
"request-promise-native": "^1.0.5",
"rimraf": "^2.6.2",
"yorkie": "^1.0.2"
},
"resolutions": {
"fs-monkey": "0.3.1",
"babel-core": "7.0.0-bridge.0"
}
}