forked from nodejs/llnode
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 990 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
46
{
"name": "llnode",
"version": "1.6.2",
"description": "Node.js plugin for LLDB",
"main": "no-entry-sorry.js",
"directories": {
"test": "test"
},
"bin": {
"llnode": "scripts/llnode.sh"
},
"//": "(Blame C++)",
"scripts": {
"preinstall": "node scripts/configure.js",
"install": "./gyp_llnode && ( gmake -C out/ || make -C out/ )",
"postinstall": "node scripts/cleanup.js",
"test": "tape test/*-test.js"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/nodejs/llnode.git"
},
"files": [
"llnode.gyp.json",
"gyp_llnode",
"common.gypi",
"src/",
"scripts/",
"out/"
],
"keywords": [
"llnode",
"post",
"mortem"
],
"author": "Fedor Indutny <fedor@indutny.com>",
"license": "MIT",
"gypfile": true,
"bugs": {
"url": "https://github.com/nodejs/llnode/issues"
},
"homepage": "https://github.com/nodejs/llnode#readme",
"devDependencies": {
"tape": "^4.4.0"
}
}