-
Notifications
You must be signed in to change notification settings - Fork 295
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 754 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 754 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
{
"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.6.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"
},
"devDependencies": {
"mocha": "1.2.2",
"should": "0.6.3",
"node-gyp": "0.5.7"
},
"contributors": [
"Jed Parsons (@jedp)",
"Jeff Haynie (@jhaynie)",
"Justin Matthews (@jmatthewsr-ms)"
]
}