-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 885 Bytes
/
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
{
"name": "test-sem-release",
"version": "1.0.0",
"description": "Testing semantic release for node projects",
"main": "index.js",
"scripts": {
"test": "jest",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/minijus/test-sem-release.git"
},
"author": "minijus",
"license": "MIT",
"bugs": {
"url": "https://github.com/minijus/test-sem-release/issues"
},
"homepage": "https://github.com/minijus/test-sem-release#readme",
"devDependencies": {
"@commitlint/cli": "^7.5.2",
"@commitlint/config-conventional": "^7.5.0",
"@semantic-release/changelog": "^3.0.2",
"@semantic-release/git": "^7.0.8",
"husky": "^1.3.1",
"jest": "^24.5.0",
"semantic-release": "^15.13.3"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}