-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1021 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
43
44
45
{
"name": "dumpme",
"main": "index.js",
"version": "2.0.0",
"author": "The Kuzzle Team <[email protected]>",
"description": "Creates a coredump of the current process, without killing it",
"keywords": [
"core",
"coredump",
"ptrace",
"gcore",
"process dump"
],
"scripts": {
"clean": "node-gyp clean",
"configure": "node-gyp configure",
"build": "node-gyp build",
"rebuild": "node-gyp rebuild"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kuzzleio/dumpme.git"
},
"dependencies": {
"bindings": "^1.5.0",
"nan": "^2.22.0"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"cz-conventional-changelog": "^3.3.0",
"node-gyp": "^11.0.0",
"semantic-release-config-kuzzle": "^1.1.2"
},
"engines": {
"node": "^18.17.0 || >=20.5.0"
},
"license": "MIT",
"files": [
"CHANGELOG.md",
"binding.gyp",
"lib/dumpme.cc",
"lib/dumpme.h"
]
}