forked from jeffijoe/icebug
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 907 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 907 Bytes
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
{
"name": "icebug",
"version": "0.1.3",
"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",
"lint": "eslint ./lib",
"test": "echo \"Error: no test specified\" && exit 1"
},
"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": "^0.12.6",
"nodemon": "^1.8.1",
"rc": "^1.1.6"
},
"devDependencies": {
"eslint": "^2.1.0"
}
}