forked from dainis/node-gcstats
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
51 lines (51 loc) · 1.46 KB
/
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
43
44
45
46
47
48
49
50
51
{
"name": "@sematext/gc-stats",
"version": "1.5.7",
"description": "Exposes node v8 garbage collection stats",
"main": "index.js",
"repository": "[email protected]:adnanrahic/node-gcstats.git",
"license": "Unlicense",
"engines": {
"node": ">=6"
},
"scripts": {
"install": "npx node-pre-gyp install --fallback-to-build",
"test": "npx --node-arg --expose-gc mocha",
"example": "node --expose-gc example.js",
"build": "npx node-pre-gyp build",
"pretest": "npm run build",
"clean": "npx node-pre-gyp clean",
"configure": "npx node-pre-gyp configure",
"release": "release-it"
},
"dependencies": {
"@mapbox/node-pre-gyp": "^1.0.10",
"nan": "^2.17.0"
},
"gypfile": true,
"devDependencies": {
"aws-sdk": "^2.1241.0",
"expose-gc": "^1.0.0",
"mocha": "^9.2.2",
"release-it": "^15.5.0",
"semver": "^7.3.8",
"should": "^13.2.3"
},
"binary": {
"module_name": "gcstats",
"module_path": "./build/{module_name}/v{version}/{configuration}/{node_abi}-{platform}-{arch}-{libc}",
"remote_path": "./",
"package_name": "{version}.tar.gz",
"host": "https://github.com/adnanrahic/node-gcstats/archive/refs/tags/"
},
"release-it": {
"github": {
"release": true,
"tokenRef": "RELEASE_IT_GITHUB_TOKEN",
"releaseNotes": "npx auto-changelog --stdout --commit-limit false -u --template ./changelog.hbs"
},
"hooks": {
"after:bump": "npx auto-changelog -p"
}
}
}