-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 887 Bytes
/
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
{
"name": "github-release-util",
"version": "2.0.0",
"description": "Automates creating a github releases and uploading build assets.",
"bin": {
"ghr": "dist/index.js"
},
"scripts": {
"build": "./node_modules/.bin/tsc -p ./tsconfig.json",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"github",
"release",
"cli"
],
"repository": {
"type": "git",
"url": "https://github.com/coleHafner/github-release-util"
},
"author": "cole hafner",
"license": "ISC",
"devDependencies": {
"@types/node": "^12.0.12",
"ts-node": "^8.3.0",
"tsc": "^1.20150623.0",
"typescript": "^3.5.2"
},
"dependencies": {
"@octokit/rest": "^16.28.2",
"archiver": "^3.0.0",
"chalk": "^2.4.2",
"commander": "^2.20.0",
"dotenv": "^8.0.0",
"inquirer": "^6.4.1",
"mime-types": "^2.1.24"
}
}