-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 978 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 978 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
37
38
{
"name": "node-github-release",
"version": "0.2.1",
"description": "CLI to create and edit releases on Github (and upload artifacts)",
"main": "./lib/index.js",
"bin": {
"github-release": "./bin/github-release.js"
},
"scripts": {
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/miyajan/node-github-release.git"
},
"keywords": [
"github"
],
"author": "miyajan <miyajan777@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/miyajan/node-github-release/issues"
},
"homepage": "https://github.com/miyajan/node-github-release",
"dependencies": {
"commander": "^2.11.0",
"es6-promise": "^4.1.1",
"get-stdin": "^5.0.1",
"github": "^11.0.0",
"simple-git": "^1.77.0"
},
"devDependencies": {
"@types/commander": "^2.9.2",
"@types/es6-promise": "0.0.33",
"typescript": "^2.5.3"
}
}