-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 858 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
{
"name": "node-segfault-handler",
"version": "1.4.1",
"description": "A C++ Node.js module that helps gathering informations on segmentation fault",
"main": "index.js",
"keywords": [
"linux",
"alpine-linux",
"segfault",
"libunwind"
],
"scripts": {
"configure": "node-gyp configure",
"build": "node-gyp build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Shiranuit/node-segfault-handler.git"
},
"author": "Shiranuit",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/Shiranuit/node-segfault-handler/issues"
},
"homepage": "https://github.com/Shiranuit/node-segfault-handler#readme",
"dependencies": {
"bindings": "^1.5.0",
"nan": "^2.17.0"
},
"files": [
"index.d.ts",
"index.js",
"src/*",
"includes/*",
"binding.gyp"
]
}