-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.15 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
{
"name": "github-webhook-notification",
"version": "1.0.0",
"description": "files on sftp in oss:",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"release-try-run": "standard-version --dry-run --prerelease",
"release-patch-pre": "standard-version --release-as patch --dry-run",
"release-patch": "standard-version --release-as patch",
"release-minor": "standard-version --release-as minor",
"release-major": "standard-version --release-as major"
},
"author": "Neil Xiao",
"license": "ISC",
"devDependencies": {
"standard-version": "^9.5.0"
},
"standard-version": {
"header": "# CHANGELOG\n\n",
"types": [
{"type":"feat","section":"Features(新特性)"},
{"type":"fix","section":"Bug Fixes(Bug修复)"},
{"type":"doc","section":"Document"},
{"type":"style","section":"Style"},
{"type":"test","section":"Tests", "hidden": true},
{"type":"ci","hidden":true}
],
"releaseCommitMessageFormat": "chore: release {{currentTag}}, see changelog for details",
"skip": {
"bump": true,
"commit": false,
"tag": false
}
}
}