forked from cheton/github-release-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.29 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
37
38
39
40
41
42
43
44
45
46
47
{
"name": "github-release-cli",
"version": "1.0.1",
"description": "A command-line tool for managing release assets on a GitHub repository",
"homepage": "https://github.com/cheton/github-release-cli",
"author": "Cheton Wu <[email protected]>",
"bin": {
"github-release": "./bin/github-release"
},
"scripts": {
"prepare": "npm run build",
"build": "babel --out-dir ./lib ./src",
"test": "tap test/*.js --no-timeout --node-arg=--require --node-arg=babel-register --node-arg=--require --node-arg=babel-polyfill",
"test:list": "npm run build && node lib/index.js -a --owner cheton --repo github-release-cli list"
},
"files": [
"bin",
"lib"
],
"repository": {
"type": "git",
"url": "[email protected]:cheton/github-release-cli.git"
},
"license": "MIT",
"preferGlobal": true,
"keywords": [
"github",
"release",
"cli"
],
"dependencies": {
"@octokit/rest": "^16.9.0",
"babel-runtime": "^6.26.0",
"commander": "^2.19.0",
"http-link-header": "^1.0.2",
"mime-types": "^2.1.21",
"minimatch": "^3.0.4",
"url-parse": "^1.4.4"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-0": "^6.24.1",
"tap": "^12.1.1"
}
}