-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.21 KB
/
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
{
"name": "java-stack-parser",
"version": "1.0.0",
"description": "Parse Java stack traces and transform them into comprehensive JS objects",
"main": "lib/java-stack-parser.js",
"scripts": {
"build": "webpack --bail",
"test": "mocha --compilers js:babel-core/register --colors src/*.spec.js",
"coverage": "istanbul cover node_modules/mocha/bin/_mocha -- --compilers js:babel-core/register --colors --reporter dot src/*.spec.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tbouron/java-stack-parser.git"
},
"keywords": [
"java",
"stacktrace",
"parser",
"exception"
],
"author": "Thomas Bouron",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/tbouron/java-stack-parser/issues"
},
"homepage": "https://github.com/tbouron/java-stack-parser#readme",
"devDependencies": {
"babel": "^6.5.2",
"babel-core": "^6.18.0",
"babel-eslint": "^7.0.0",
"babel-loader": "^6.2.5",
"babel-plugin-add-module-exports": "0.1.2",
"babel-preset-es2015": "^6.18.0",
"chai": "^3.5.0",
"eslint": "^3.8.1",
"eslint-loader": "^1.6.0",
"istanbul": "^1.0.0-alpha.2",
"mocha": "^3.1.2",
"webpack": "^1.13.2"
}
}