forked from bchr02/node-pre-gyp-github
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.6 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@mmomtchev/node-pre-gyp-github",
"version": "2.0.6",
"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": {
"lint": "eslint index.js test/test.js bin/node-pre-gyp-github.js",
"test": "nyc --reporter=lcov --reporter=text mocha",
"codecov": "curl -s https://codecov.io/bash | bash",
"preversion": "npm run test",
"version": "git add package.json",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mmomtchev/node-pre-gyp-github.git"
},
"keywords": [
"node-pre-gyp",
"binary",
"bindings",
"c++",
"c",
"native",
"addon",
"module",
"github",
"releases"
],
"dependencies": {
"@octokit/plugin-retry": "^3.0.9",
"@octokit/rest": "^18.11.2",
"commander": "^8.2.0"
},
"devDependencies": {
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"eslint": "^7.32.0",
"eslint-plugin-array-func": "^3.1.7",
"eslint-plugin-mocha": "^9.0.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"mocha": "^10.1.0",
"nyc": "^15.1.0",
"prettier": "^2.4.1",
"sinon": "^11.1.2"
},
"contributors": [
"Bill Christo",
{
"name": "Momtchil Momtchev",
"url": "https://github.com/mmomtchev",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/mmomtchev/node-pre-gyp-github/issues"
},
"homepage": "https://github.com/mmomtchev/node-pre-gyp-github#readme"
}