-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.54 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.54 KB
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
{
"private": true,
"workspaces": [
"packages/*",
"example/*"
],
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^7.2.1",
"@commitlint/config-lerna-scopes": "^7.2.1",
"@types/jest": "^23.3.9",
"commitizen": "^3.0.4",
"concurrently": "^4.0.1",
"cz-conventional-changelog": "^2.1.0",
"husky": "^1.1.2",
"jest": "^23.6.0",
"lerna": "^3.10.6",
"lint-staged": "^7.3.0",
"ts-jest": "^23.10.5",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"typescript": "^3.1.6"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"scripts": {
"prepublish": "tsc -p packages/plugin-utils && tsc -p packages/plugin-webpack",
"test": "jest --coverage",
"dev:react": "yarn workspace react ddot dev",
"dev:vue": "yarn workspace vue ddot dev",
"rm:lib": "rm -rf ./packages/*/lib",
"build:utils": "tsc -p packages/plugin-utils",
"watch-cli": "tsc -w -p packages/cli",
"watch-plugin-utils": "tsc -w -p packages/plugin-utils",
"watch-plugin-webpack": "tsc -w -p packages/plugin-webpack",
"watch-plugin-jenkins": "tsc -w -p packages/plugin-jenkins",
"watch": "concurrently \"npm:watch-*\"",
"commit": "git-cz"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{ts}": [
"tslint --fix -p .",
"git add"
]
},
"commitlint": {
"extends": [
"@commitlint/config-lerna-scopes"
]
}
}