-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
57 lines (57 loc) · 1.73 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
{
"name": "@hummer/cli-plugins",
"version": "1.0.0",
"description": "Hummer Cli Plugins",
"main": "index.js",
"scripts": {
"cz": "git add -A && npx git-cz",
"test": "lerna run test",
"release": "npm run clean:lock && lerna publish",
"build": "lerna run build",
"build:watch": "lerna run --parallel build:watch",
"bootstrap": "npm install && npx lerna bootstrap",
"clean": "lerna clean --yes && rm -rf ./packages/**/package-lock.json",
"clean:lock": "rm -rf ./package-lock.json && rm -rf ./packages/**/package-lock.json",
"pub:pre": "npm run build && npm run clean:lock && npx lerna publish --canary --conventional-commits && git push --tags",
"pub": "npm run build && npm run clean:lock && npx lerna publish --conventional-commits && git push --tags"
},
"author": "",
"license": "ISC",
"config": {
"commitizen": {
"path": "cz-customizable"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push-todo-open": "npm run test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*": [
"git add"
]
},
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-angular": "^9.1.2",
"@commitlint/config-conventional": "^8.1.0",
"@commitlint/config-lerna-scopes": "^8.1.0",
"@types/jest": "^26.0.12",
"@typescript-eslint/parser": "^3.2.0",
"commitizen": "^2.10.1",
"conventional-changelog": "^2.0.1",
"cz-conventional-changelog": "^2.1.0",
"cz-customizable": "^6.3.0",
"glob": "^7.1.6",
"husky": "^1.1.2",
"jest": "^26.0.1",
"lerna": "^3.16.1",
"lint-staged": "^7.3.0",
"ts-jest": "^26.1.0",
"ts-node": "^9.0.0",
"typescript": "^4.1.2"
}
}