-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.1 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.1 KB
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
{
"name": "debuguy",
"version": "0.1.3",
"main": "lib/debuguy.js",
"description": "An unintrusive log analysis/debugging/profiling tool",
"homepage": "https://github.com/seiyugi/debuguy",
"bugs": "https://github.com/seiyugi/debuguy/issues",
"author": {
"name": "seiyugi",
"email": "debuguy@debuguy.org"
},
"repository": {
"type": "git",
"url": "https://github.com/seiyugi/debuguy"
},
"license": "MPL",
"directories": [
"lib"
],
"keywords": [
"debuguy"
],
"devDependencies": {
"gulp": "^3.8.11",
"gulp-jshint": "^1.9.2",
"gulp-mocha": "^2.0.0",
"gulp-symlink": "^2.1.0",
"gulp-util": "^3.0.4",
"gulp-watch": "^4.2.0",
"jshint-stylish": "^0.2.0",
"proxyquire": "^1.4.0",
"should": "^5.2.0",
"sinon": "^1.14.0",
"streamqueue": "^0.1.3"
},
"scripts": {
"test": "gulp unit-test"
},
"bin": {
"debuguy": "./cli.js"
},
"preferGlobal": "true",
"dependencies": {
"espect.js": "^1.0.2",
"esprima": "^2.0.0",
"express": "^4.8.5",
"minimist": "^1.1.1",
"open": "0.0.5",
"ws": "^0.4.32"
}
}