forked from nodejs/node-inspect
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 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
51
52
53
54
55
56
57
{
"name": "niim",
"version": "1.12.0-a",
"description": "Node Inspect IMproved",
"license": "MIT",
"main": "lib/cli.js",
"bin": {
"niim": "niim"
},
"homepage": "https://github.com/wesgarland/niim",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/wesgarland/niim.git"
},
"bugs": {
"url": "https://github.com/wesgarland/niim/issues"
},
"scripts": {
"postpublish": "PACKAGE_VERSION=$(cat package.json | grep \\\"version\\\" | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g' | tr -d '[[:space:]]') && git tag v$PACKAGE_VERSION && git push --tags",
"pretest": "eslint --rulesdir=tools/eslint-rules lib test",
"test": "tap test",
"posttest": "nlm verify"
},
"nlm": {
"license": {
"files": [
"lib"
]
}
},
"dependencies": {},
"devDependencies": {
"eslint": "^6.8.0",
"nlm": "^3.0.0",
"tap": "^10.7.0"
},
"author": "Wes Garland <wes@kingsds.network>",
"files": [
"*.js",
"lib",
"etc"
],
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"directories": {
"example": "examples",
"lib": "lib",
"test": "test"
},
"keywords": [
"cli-debugger",
"cli",
"debugger",
"node-inspect"
]
}