-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 989 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 989 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
35
36
{
"name": "@freakin-ward/semantic-release-example",
"publishConfig": {
"access": "public"
},
"version": "0.0.0-semantically-released",
"description": "",
"main": "index.js",
"scripts": {
"prepare": "husky install",
"test": "echo \"Error: no test specified\" && exit 1",
"semantic-release": "semantic-release",
"cz": "git-cz",
"commit-msg": "npx --no-install commitlint --edit $1",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true\n"
},
"repository": {
"type": "git",
"url": "https://github.com/FreakinWard/semantic-release-example.git"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"husky": "^7.0.1",
"semantic-release": "^17.4.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}