forked from bchr02/node-pre-gyp-github
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.1 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
{
"name": "node-pre-gyp-github",
"version": "2.0.0-rc-1",
"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": "^18.0.3",
"chai-as-promised": "^7.1.1",
"commander": "^6.0.0",
"mime-types": "^2.1.27"
},
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.1.0",
"mocha": "^8.1.1",
"nyc": "^15.1.0",
"sinon": "^9.0.3"
},
"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"
}