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