-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
47 lines (47 loc) · 1.21 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": "v8-debug",
"version": "1.0.1",
"description": "v8 debugger extending API",
"homepage": "http://github.com/node-inspector/v8-debug",
"author": "3y3 Ghoti <3y3@bk.ru>",
"repository": {
"type": "git",
"url": "git://github.com/node-inspector/v8-debug.git"
},
"license": {
"name": "BSD",
"url": "https://github.com/node-inspector/v8-debug/blob/master/LICENSE"
},
"binary": {
"module_name": "debug",
"module_path": "./build/{module_name}/v{version}/{node_abi}-{platform}-{arch}/",
"remote_path": "./{module_name}/v{version}/",
"package_name": "{node_abi}-{platform}-{arch}.tar.gz",
"host": "https://node-inspector.s3.amazonaws.com/"
},
"keywords": [
"v8",
"debugger"
],
"engines": {
"node": ">=0.10"
},
"main": "v8-debug",
"dependencies": {
"nan": "^2.3.2",
"node-pre-gyp": "^0.6.5"
},
"devDependencies": {
"aws-sdk": "^2.1.8",
"mocha": "^2.1.0",
"chai": "^1.10.0",
"rimraf": "^2.4.4"
},
"scripts": {
"preinstall": "node -e 'process.exit(0)'",
"install": "node-pre-gyp install --fallback-to-build",
"rebuild": "node-pre-gyp rebuild",
"release": "node ./tools/release.js $@",
"test": "mocha --debug"
}
}