forked from airbnb/node-memwatch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 863 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 863 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
32
33
34
35
36
37
38
39
40
41
42
{
"name": "@cf/node-memwatch",
"description": "Forked from @airbnb/node-memwatch. Support Node v12 ",
"version": "1.0.0",
"author": "ghy",
"engines": {
"node": ">= 8.0"
},
"repository": {
"type": "git",
"url": "https://github.com/ghyghoo8/node-memwatch.git"
},
"main": "include.js",
"licenses": [
{
"type": "wtfpl"
}
],
"bugs": {
"url": "https://github.com/ghyghoo8/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.3.0",
"nan": "^2.9.2"
},
"publishConfig": {
"access": "public"
}
}