-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
37 lines (37 loc) · 1.23 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
{
"name": "v8-profiler-lambda",
"version": "5.7.0-1",
"description": "node bindings for the v8 profiler compiled for AWS Lambda",
"homepage": "http://github.com/iopipe/v8-profiler-lambda",
"author": "IOpipe Team",
"repository": {
"type": "git",
"url": "git://github.com/iopipe/v8-profiler-lambda.git"
},
"license": "Apache-2.0",
"binary": {
"module_name": "profiler",
"module_path": "../v8-profiler/build/{module_name}/v{major}.{minor}.{patch}/{node_abi}-{platform}-{arch}/",
"remote_path": "./{module_name}/v{major}.{minor}.{patch}/",
"package_name": "{node_abi}-{platform}-{arch}.tar.gz",
"host": "https://node-inspector.s3.amazonaws.com/"
},
"keywords": [
"profiler",
"inspector"
],
"engines": {
"node": ">=0.10"
},
"main": "index.js",
"dependencies": {
"node-gyp": "^3.6.2",
"node-pre-gyp": "^0.6.34",
"v8-profiler": "=5.7.0"
},
"scripts": {
"preinstall": "node -e 'process.exit(0)'",
"install": "node-pre-gyp install --target=4.8.0 --target_arch=x64 --target_platform=linux --fallback-to-build; node-pre-gyp install --target=6.10.0 --target_arch=x64 --target_platform=linux --fallback-to-build;",
"test": "echo \"no tests specified\" && exit 0"
}
}