forked from node-inspector/v8-profiler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.32 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
{
"name": "v8-profiler",
"version": "5.7.0",
"description": "node bindings for the v8 profiler",
"homepage": "http://github.com/node-inspector/v8-profiler",
"author": "Danny Coates <dannycoates@gmail.com>",
"repository": {
"type": "git",
"url": "git://github.com/node-inspector/v8-profiler.git"
},
"contributors": [
{
"name": "Miroslav Bajtoš"
},
{
"name": "3y3",
"email": "3y3@bk.ru"
}
],
"license": "BSD-2-Clause",
"binary": {
"module_name": "profiler",
"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": [
"profiler",
"inspector"
],
"engines": {
"node": ">=0.10"
},
"main": "v8-profiler",
"dependencies": {
"nan": "^2.5.1",
"node-pre-gyp": "^0.6.34"
},
"devDependencies": {
"aws-sdk": "^2.0.0",
"chai": "^1.9.1",
"co": "^4.6.0",
"mocha": "^1.20.1",
"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"
}
}