-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 808 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 808 Bytes
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
{
"name": "autumnjs",
"private": true,
"workspaces": [
"packages/*",
"tools/*"
],
"repository": {
"type": "git",
"url": "https://github.com/whoisclebs/Autumnjs.git"
},
"devDependencies": {
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"husky": "^8.0.0",
"lerna": "^7.0.0",
"semantic-release": "^21.0.4"
},
"scripts": {
"prepare": "husky install && chmod ug+x .husky/*",
"commit": "git-cz",
"commit:lint": "commitlint --edit",
"semantic-release": "semantic-release",
"test": "lerna run test"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"version": "0.0.0-development"
}