-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 754 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 754 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
{
"name": "grunt-node-inspector",
"version": "1.0.0",
"description": "Run node-inspector with the rest of your workflow to debug node.js",
"main": "tasks/inspector.js",
"scripts": {
"test": "grunt test"
},
"keywords": [
"node-inspector",
"gruntplugin",
"grunt",
"debug"
],
"repository": {
"type": "git",
"url": "https://github.com/ChrisWren/grunt-node-inspector.git"
},
"author": "ChrisWren",
"license": "MIT",
"devDependencies": {
"grunt": "^1.0.1",
"grunt-release": "^0.14.0",
"grunt-contrib-jshint": "^1.1.0",
"matchdep": "^1.0.1",
"should": "^11.2.1",
"grunt-simple-mocha": "^0.4.1",
"win-spawn": "^2.0.0"
},
"dependencies": {
"node-inspector": "^1.1.1"
}
}