-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 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
{
"name": "jugg",
"version": "1.0.0",
"main": "index.js",
"private": true,
"author": "daief <1437931235@qq.com>",
"license": "MIT",
"scripts": {
"doc": "HARD_SOURCE=none jugg doc --dev --config=.juggrc.doc.ts",
"doc:build": "HARD_SOURCE=none node_modules/.bin/jugg doc --build --config=.juggrc.doc.ts --mode=production",
"cm": "git-cz"
},
"dependencies": {
"remove": "^0.1.5",
"tslib": "^1.9.3"
},
"devDependencies": {
"@commitlint/cli": "^7.2.1",
"@commitlint/config-lerna-scopes": "^7.2.1",
"@types/node": "^10.12.12",
"commitizen": "^3.0.5",
"cross-env": "^6.0.3",
"cz-conventional-changelog": "^2.1.0",
"husky": "^1.2.0",
"lerna": "^3.10.5",
"lerna-changelog": "^0.8.2",
"lint-staged": "^8.1.0",
"memory-fs": "^0.5.0",
"prettier": "^1.19.0",
"rimraf": "^2.6.2",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.17.0",
"typescript": "^3.2.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": ["@commitlint/config-lerna-scopes"]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"lint-staged": {
"linters": {
"*.css": ["prettier --parser css --write", "git add"],
"*.less": ["prettier --parser less --write", "git add"],
"*.json": ["prettier --parser json --write", "git add"],
"*.ts": [
"tslint --fix",
"prettier --parser typescript --write",
"git add"
]
},
"ignore": []
},
"workspaces": ["packages/*", "examples/*"]
}