forked from stacktracejs/error-stack-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.71 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.71 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
56
57
58
59
{
"name": "error-stack-parser",
"description": "Extract meaning from JS Errors",
"maintainers": [
"Eric Wendelin <me@eriwen.com> (http://www.eriwen.com)",
"Victor Homyakov <vkhomyackov@gmail.com> (https://github.com/victor-homyakov)",
"Oliver Salzburg (https://github.com/oliversalzburg)"
],
"version": "1.2.2",
"license": "SEE LICENSE IN LICENSE",
"keywords": [
"stacktrace",
"error",
"stack"
],
"homepage": "http://www.stacktracejs.com",
"dependencies": {
"stackframe": "^0.3.0"
},
"repository": {
"type": "git",
"url": "git://github.com/stacktracejs/error-stack-parser.git"
},
"devDependencies": {
"colors": "^1.1.2",
"del": "^1.2.0",
"gulp": "^3.9.0",
"gulp-concat": "^2.6.0",
"gulp-coveralls": "^0.1.4",
"gulp-jshint": "^1.11.2",
"gulp-sourcemaps": "^1.5.2",
"gulp-uglify": "^1.2.0",
"jasmine-node": "~1.14",
"karma": "~0.12",
"karma-chrome-launcher": "^0.1.5",
"karma-coverage": "^0.5.0",
"karma-firefox-launcher": "^0.1.3",
"karma-ie-launcher": "^0.1.5",
"karma-jasmine": "^0.1.6",
"karma-opera-launcher": "^0.1.0",
"karma-phantomjs2-launcher": "^0.3.1",
"karma-safari-launcher": "^0.1.1",
"karma-sauce-launcher": "^0.2.10",
"run-sequence": "^1.1.1"
},
"bugs": {
"url": "https://github.com/stacktracejs/error-stack-parser/issues"
},
"main": "./error-stack-parser.js",
"files": [
"LICENSE",
"README.md",
"error-stack-parser.js",
"dist/"
],
"scripts": {
"test": "gulp test"
}
}