-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.2 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
{
"name": "TestNodeGypGithub",
"version": "0.0.1",
"description": "Hello world app packaged with node-pre-gyp",
"main": "./index.js",
"author": "Cosmin Ghitea <cosminghitea>",
"repository": {
"type": "git",
"url": "git://github.com/cosminghitea/TestNodeGypGithub.git"
},
"binary": {
"module_name": "binding",
"module_path": "./lib/binding/{configuration}/{node_abi}-{platform}-{arch}/",
"package_name": "{module_name}-v{version}-{platform}-{arch}.tar.gz",
"host": "https://github.com/cosminghitea/TestNodeGypGithub/releases/download/",
"remote_path": "{version}"
},
"dependencies": {
"github": "^0.2.4",
"istanbul": "^0.4.5",
"mocha": "^4.0.1",
"nan": "2.x",
"node-pre-gyp": "0.6.x",
"should": "^13.1.3"
},
"bundledDependencies": [
"node-pre-gyp"
],
"devDependencies": {
"aws-sdk": "^2.163.0",
"node-pre-gyp-github": "^1.3.1"
},
"scripts": {
"install": "node-pre-gyp install --fallback-to-build",
"test": "istanbul test \"./node_modules/mocha/bin/_mocha\" ./test/*.js",
"package": "node-pre-gyp package"
}
}