-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.13 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
{
"name": "frontend-workflow",
"version": "1.0.0",
"description": "frontend workflow",
"scripts": {
"preinstall": "npx only-allow npm",
"prepare": "husky install",
"pre-commit": "",
"commit": "cz",
"commit-msg": "npm run commitlint",
"commitlint": "npx commitlint -x @commitlint/config-conventional --edit",
"changelog": "conventional-changelog -p angular -n changelog-options.js -i CHANGELOG.md -s -r 0",
"rewrite-changelog": "rm -rf CHANGELOG.md && npm run changelog"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Danwzj/frontend-workflow.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Danwzj/frontend-workflow/issues"
},
"homepage": "https://github.com/Danwzj/frontend-workflow#readme",
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"commitizen": "^4.2.4",
"conventional-changelog-cli": "^2.2.2",
"cz-customizable": "^6.7.0",
"husky": "^8.0.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
}
}
}