-
Notifications
You must be signed in to change notification settings - Fork 100
/
package.json
73 lines (73 loc) · 1.81 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "llnode",
"version": "4.0.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"
},
"bin": {
"llnode": "llnode.js"
},
"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",
"nyc-test-all": "nyc npm run test-all",
"nyc-test": "nyc npm run test",
"coverage-cc": "make coverage",
"coverage-js": "nyc report --reporter=text-lcov > coverage-js.info",
"coverage": "npm run coverage-cc && npm run coverage-js",
"linter": "node scripts/linter.js",
"format": "npx clang-format -i src/*"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/nodejs/llnode.git"
},
"files": [
"Makefile",
"binding.gyp",
"llnode.gypi",
"src/",
"deps/rang/",
"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": {
"clang-format": "1.2.4",
"codecov": "^3.1.0",
"nyc": "^15.1.0",
"tape": "^4.4.0"
},
"nyc": {
"include": [
"index.js",
"test/**/*.js"
],
"exclude": [
"test/fixtures/**/*.js"
],
"all": true
},
"dependencies": {
"bindings": "^1.3.0",
"node-addon-api": "^1.1.0"
}
}