forked from googlearchive/stacky
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.26 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.26 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
52
53
54
55
{
"name": "stacky",
"version": "1.3.2",
"description": "Stacky parses stack traces from various sources, and formats them in readable ways.",
"main": "lib",
"browser": "browser.js",
"files": [
"lib/",
"browser.js"
],
"directories": {
"test": "test"
},
"scripts": {
"test": "gulp test",
"build": "browserify --exclude chalk --standalone Stacky lib/index.js -o browser.js"
},
"repository": {
"type": "git",
"url": "https://github.com/PolymerLabs/stacky"
},
"keywords": [
"stack",
"trace",
"error",
"stack parser",
"trace parser"
],
"author": "The Polymer Authors",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/PolymerLabs/stacky/issues"
},
"homepage": "https://github.com/PolymerLabs/stacky",
"devDependencies": {
"browserify": "^12.0.1",
"chai": "^3.4.1",
"event-stream": "^3.1.7",
"gulp": "^3.8.7",
"gulp-coverage": "^0.3.38",
"gulp-coveralls": "^0.1.2",
"gulp-jshint": "^1.8.4",
"gulp-mocha": "^2.2.0",
"gulp-notify": "^2.2.0",
"gulp-plumber": "^1.0.1",
"gulp-watch": "^4.3.5",
"jshint-stylish": "^2.1.0",
"lazypipe": "^1.0.1",
"mocha": "^2.3.4"
},
"dependencies": {
"chalk": "^1.1.1",
"lodash": "^3.0.0"
}
}