-
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) · 819 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 819 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": "@s3pweb/release-message-creator",
"version": "1.1.0",
"description": "Create a formatted release message from a standard-release changelog",
"keywords": [
"changelog",
"webhook",
"release"
],
"bin": {
"create-release-message": "bin/createMessage.js",
"create-github-message": "bin/createGitHubMessage.js"
},
"scripts": {
"lint": "standard --fix",
"test": "standard",
"release": "commit-and-tag-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/s3pweb/release-message-creator.git"
},
"author": "s3pweb",
"license": "MIT",
"files": [
"bin/**/*"
],
"devDependencies": {
"commit-and-tag-version": "12.5.2",
"standard": "17.1.2"
},
"dependencies": {
"axios": "1.11.0",
"yargs": "17.7.2"
}
}