forked from blueconic/node-oom-heapdump
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.39 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": "1.2.0",
"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": {
"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",
"remote_path": "{version}",
"host": "https://github.com/blueconic/node-oom-heapdump/releases/download/"
},
"engines": {
"node": ">=7.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.13.0"
},
"dependencies": {
"bindings": "^1.5.0",
"chrome-remote-interface": "^0.28.0",
"gc-stats": "^1.4.0",
"nan": "^2.14.0",
"node-pre-gyp": "^0.15.0",
"require-main-filename": "^2.0.0",
"ws": "^7.1.2"
}
}