-
-
Notifications
You must be signed in to change notification settings - Fork 113
/
package.json
64 lines (64 loc) · 1.25 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
{
"private": true,
"name": "saber",
"scripts": {
"test": "npm run lint && lerna run test",
"lint": "lerna run lint",
"commit": "git-cz",
"prepare": "lerna run prepublishOnly"
},
"repository": {
"url": "saberland/saber",
"type": "git"
},
"author": "egoist<[email protected]>",
"license": "MIT",
"devDependencies": {
"commitizen": "4.0.3",
"conf": "6.2.0",
"cz-conventional-changelog": "3.0.2",
"enquirer": "^2.3.1",
"eslint": "^6.6.0",
"husky": "3.0.9",
"jest": "^24.9.0",
"lerna": "3.18.3",
"lint-staged": "8.1.6",
"prettier": "1.18.2",
"typedoc": "^0.15.0",
"typescript": "^3.8.0-dev.20191031"
},
"resolutions": {
"typedoc/typescript": "^3.8.0-dev.20191031"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"linters": {
"*.{json,md}": [
"prettier --write",
"git add"
]
},
"ignore": [
"**/dist/**",
"**/vendor/**",
"*.min.js",
"**/vue-renderer/app/**",
"**/example/**",
"website/**"
]
},
"workspaces": [
"packages/*",
"other-packages/*",
"website"
],
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}