-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
51 lines (51 loc) · 1.5 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
{
"name": "node-oom-heapdump",
"version": "3.3.1",
"description": "Create a V8 heap snapshot when an \"Out of Memory\" error occurs, or create a heap snapshot or CPU profile on request.",
"main": "index.js",
"scripts": {
"rebuild": "node-pre-gyp install --build-from-source",
"install": "node-pre-gyp install --fallback-to-build",
"test": "node --max_old_space_size=80 --inspect ./tests/oom_app.js",
"dummy": "node -e \"process.exit(0)\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/blueconic/node-oom-heapdump.git"
},
"binary": {
"module_name": "node_oom_heapdump_native",
"module_path": "./build/Release",
"package_name": "{module_name}-v{version}-{node_abi}-{platform}-{arch}-{libc}.tar.gz",
"host": "https://github.com/blueconic/node-oom-heapdump/releases/download/{version}"
},
"engines": {
"node": ">=10.0.0"
},
"keywords": [
"nodejs",
"memory-leak",
"out-of-memory",
"heapdump",
"memory",
"OnFatalError",
"OnOOMError"
],
"author": "Paul Rütter",
"license": "MIT",
"bugs": {
"url": "https://github.com/blueconic/node-oom-heapdump/issues"
},
"homepage": "https://github.com/blueconic/node-oom-heapdump#readme",
"devDependencies": {
"eslint-config-google": "^0.14.0"
},
"dependencies": {
"@mapbox/node-pre-gyp": "^1.0.11",
"bindings": "^1.5.0",
"chrome-remote-interface": "^0.33.0",
"nan": "^2.20.0",
"require-main-filename": "^2.0.0",
"ws": "^8.17.1"
}
}