forked from lloyd/node-memwatch
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
39 lines (39 loc) · 837 Bytes
/
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
{
"name": "memwatch",
"description": "Keep an eye on your memory usage, and discover and isolate leaks.",
"version": "0.2.2",
"author": "Lloyd Hilaiel (http://lloyd.io)",
"engines": {
"node": ">= 0.8.0"
},
"repository": {
"type": "git",
"url": "https://github.com/lloyd/node-memwatch.git"
},
"main": "include.js",
"licenses": [
{
"type": "wtfpl"
}
],
"bugs": {
"url": "https://github.com/lloyd/node-memwatch/issues"
},
"scripts": {
"install": "node-gyp rebuild",
"test": "mocha tests --reporter spec"
},
"devDependencies": {
"mocha": "1.2.2",
"should": "0.6.3"
},
"contributors": [
"Jed Parsons (@jedp)",
"Jeff Haynie (@jhaynie)",
"Justin Matthews (@jmatthewsr-ms)"
],
"dependencies": {
"bindings": "^1.2.0",
"nan": "^1.2.0"
}
}