forked from yjhjstz/llnode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.24 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
{
"name": "@alicloud/llnode-api",
"version": "0.2.0",
"description": "An lldb plugin for Node.js and V8, which enables inspection of JavaScript states for insights into Node.js processes and their core dumps.",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"preinstall": "node scripts/configure.js",
"install": "node scripts/install.js",
"postinstall": "node scripts/cleanup.js",
"test-plugin": "tape test/plugin/*-test.js",
"test-addon": "tape test/addon/*-test.js",
"test-all": "npm run test-addon && npm run test-plugin",
"test": "npm run test-plugin"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/nodejs/llnode.git"
},
"files": [
"Makefile",
"binding.gyp",
"llnode.gypi",
"src/",
"scripts/",
"index.js"
],
"keywords": [
"llnode",
"post",
"mortem"
],
"author": "Fedor Indutny <[email protected]>",
"license": "MIT",
"gypfile": true,
"bugs": {
"url": "https://github.com/nodejs/llnode/issues"
},
"homepage": "https://github.com/nodejs/llnode#readme",
"devDependencies": {
"tape": "^4.4.0"
},
"dependencies": {
"bindings": "^1.3.0",
"nan": "^2.10.0",
"node-addon-api": "^1.1.0"
}
}