-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
33 lines (33 loc) · 1.01 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
{
"name": "phabalicious",
"version": "4.0.0-alpha.8",
"main": "index.js",
"repository": "https://github.com/factorial-io/phabalicious.git",
"author": "Stephan Huber <[email protected]>",
"license": "MIT",
"private": true,
"type": "module",
"devDependencies": {
"@commitlint/cli": "^17.0.1",
"@commitlint/config-conventional": "^17.0.0",
"@factorial/docs": "^0.5.3",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "3.3.0",
"cz-customizable": "^7.0.0",
"husky": "^8.0.1",
"standard-version": "^9.5.0"
},
"dependencies": {},
"scripts": {
"docs:dev": "export FDOCS_HOST=http://localhost:8080 && fdocs --config=.fdocs.js --serve",
"docs:build": "fdocs --config=.fdocs.js",
"postinstall": "husky install",
"release": "standard-version -- -t '' --sign --no-verify",
"beta-release": "standard-version -- -t '' --sign --prerelease --no-verify"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}