-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 951 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": "gctime",
"version": "0.0.2",
"description": "Record time spent on GC in high resolution",
"license": "MIT",
"author": "Vincent Weevers",
"main": "gctime.js",
"gypfile": true,
"files": [
"binding.gyp",
"gctime.cc",
"gctime.js"
],
"scripts": {
"install": "prebuild-install || node-gyp rebuild",
"test": "standard && node --expose-gc test && prebuild-ci",
"rebuild": "node-gyp rebuild"
},
"dependencies": {
"bindings": "^1.5.0",
"nan": "^2.14.0",
"prebuild-install": "^5.3.3"
},
"devDependencies": {
"prebuild": "^10.0.0",
"prebuild-ci": "^3.1.0",
"standard": "^14.3.1",
"tape": "^4.13.0"
},
"repository": "https://github.com/vweevers/gctime",
"bugs": "https://github.com/vweevers/gctime/issues",
"homepage": "https://github.com/vweevers/gctime",
"keywords": [
"gc",
"hrtime",
"garbage",
"v8"
],
"engines": {
"node": ">=6"
}
}