-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 862 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 862 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
{
"name": "gh-release-cli",
"version": "0.0.0",
"description": "A CLI to create a Github release for a repository.",
"bin": {
"gh-create-release": "./bin/gh-create-release.js"
},
"scripts": {
"start": "node ./bin/gh-create-release.js --owner=tadodotcom --repo=test-repo --commit=bfd13e9bbb942b4b4e37ca6bacf20651b5ee09d7 --assets=blabla.tar.gz --body=blabla --tag=release/v123 --name=v123",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": "tadodotcom/gh-release-cli",
"author": "Florian Rampp <florian.rampp@tado.com>",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/tadodotcom/gh-release-cli/issues"
},
"homepage": "https://github.com/tadodotcom/gh-release-cli#readme",
"dependencies": {
"@octokit/rest": "~17.1.4",
"minimist": "~1.2.5",
"mime-types": "~2.1.26"
}
}