-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 957 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
{
"name": "icebug",
"version": "0.1.7",
"description": "A wrapper around node-inspector and nodemon.",
"main": "./lib/icebug.js",
"engines": {
"node": ">=4.0.0"
},
"bin": {
"icebug": "./bin/icebug.js"
},
"scripts": {
"start": "node lib/icebug.js example/index.js",
"lint": "eslint ./lib",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublish": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jeffijoe/icebug.git"
},
"keywords": [
"debugger",
"nodemon",
"node-inspector",
"nodev"
],
"author": "Jeff Hansen <jeff@jeffijoe.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jeffijoe/icebug/issues"
},
"homepage": "https://github.com/jeffijoe/icebug#readme",
"dependencies": {
"node-inspector": "^1.1.1",
"nodemon": "^1.11.0",
"rc": "^1.2.1"
},
"devDependencies": {
"eslint": "^3.19.0"
}
}