-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1004 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
43
44
45
46
47
48
49
50
{
"name": "peekabug",
"version": "1.0.3",
"description": "Peek into a minified source code to find a bug",
"main": "index.js",
"scripts": {},
"repository": {
"type": "git",
"url": "https://github.com/jylauril/peekabug"
},
"engines": {
"node": ">=0.10"
},
"preferGlobal": true,
"bin": {
"peekabug": "index.js"
},
"keywords": [
"peekabug",
"peek",
"bug",
"source",
"inspect",
"code",
"position",
"column",
"row"
],
"author": {
"name": "Jyrki Laurila",
"url": "https://github.com/jylauril"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/jylauril/peekabug/issues"
},
"homepage": "https://github.com/jylauril/peekabug",
"dependencies": {
"bluebird": "^2.3.5",
"coffee-script": "^1.8.0",
"commander": "^2.3.0",
"js-beautify": "^1.5.4",
"request": "^2.45.0",
"underscore": "^1.7.0"
},
"devDependencies": {
"gulp": "^3.8.8",
"gulp-coffeelint": "^0.4.0"
}
}