forked from jednano/semantic-release-npm-github-config
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.6 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "scratch-semantic-release-config",
"version": "3.0.0",
"description": "semantic-release shareable configuration for Scratch",
"main": "release.config.js",
"files": [
"release.config.js"
],
"scripts": {
"commit": "git-cz",
"prepare": "husky install",
"test": "eslint ."
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/scratchfoundation/scratch-semantic-release-config.git"
},
"keywords": [
"Scratch",
"semantic-release",
"semantic-release-config",
"npm",
"github",
"git",
"release",
"changelog"
],
"author": "Christopher Willis-Ford <[email protected]>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/scratchfoundation/scratch-semantic-release-config/issues"
},
"homepage": "https://github.com/scratchfoundation/scratch-semantic-release-config#readme",
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.4",
"@semantic-release/npm": "^9.0.1",
"@semantic-release/release-notes-generator": "^10.0.3"
},
"peerDependencies": {
"semantic-release": ">=19.0.2"
},
"devDependencies": {
"@commitlint/cli": "17.8.1",
"@commitlint/config-conventional": "17.8.1",
"eslint": "8.57.1",
"eslint-config-scratch": "9.0.9",
"husky": "8.0.3",
"semantic-release": "19.0.5"
}
}