-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 796 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 796 Bytes
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
{
"name": "mtrace",
"description": "Native memory allocation tracing and mtrace log parsing for node.",
"version": "1.0.6",
"homepage": "https://github.com/Jimbly/node-mtrace",
"author": "Jimb Esser (https://github.com/Jimbly)",
"contributors": [
"Christophe Robin <crobin@nekoo.com>",
"Vincent Giersch (https://github.com/gierschv)",
"magicode (https://github.com/magicode)",
"Andreas Kohn (https://github.com/ankon)"
],
"repository": {
"type": "git",
"url": "git://github.com/Jimbly/node-mtrace.git"
},
"bin": {
"mtrace.js": "lib/mtrace.js"
},
"main": "index.js",
"dependencies": {
"easy-table": "^1.1.0",
"nan": "^2.1.0"
},
"engines": {
"node": ">=0.6.0"
},
"scripts": {
"install": "node-gyp configure build"
}
}