forked from bchr02/node-pre-gyp-github
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.06 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
{
"name": "node-pre-gyp-github",
"version": "1.4.3",
"description": "A node-pre-gyp module which provides the ability to publish to GitHub releases.",
"bin": "./bin/node-pre-gyp-github.js",
"main": "index.js",
"scripts": {
"test": "nyc --reporter=html --reporter=text mocha",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bchr02/node-pre-gyp-github.git"
},
"keywords": [
"node-pre-gyp",
"binary",
"bindings",
"c++",
"c",
"native",
"addon",
"module",
"github",
"releases"
],
"dependencies": {
"@octokit/rest": "^15.9.5",
"commander": "^2.17.0",
"mime-types": "^2.1.19"
},
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^3.0.2",
"mocha": "^5.2.0",
"nyc": "^12.0.2",
"sinon": "^6.1.4"
},
"author": "Bill Christo",
"license": "MIT",
"bugs": {
"url": "https://github.com/bchr02/node-pre-gyp-github/issues"
},
"homepage": "https://github.com/bchr02/node-pre-gyp-github#readme"
}