forked from villadora/java-class-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.22 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.22 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
{
"name": "java-class-parser",
"version": "0.2.1",
"description": "java-class-parser",
"main": "./bin/jjs-parser.js",
"bin": {
"jjs-parser": "./bin/jjs-parser.js"
},
"scripts": {
"test": "./node_modules/.bin/mocha --harmony -R spec test",
"build": "npx babel ./src -d ./bin"
},
"repository": {
"type": "git",
"url": "git://github.com/eltonlika/java-class-parser.git"
},
"keywords": [
"java",
"class",
"parser"
],
"engines": {
"node": ">=0.10.0"
},
"author": "eltonlika",
"license": "MIT",
"bugs": {
"url": "https://github.com/eltonlika/java-class-parser/issues"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.40",
"@babel/core": "^7.0.0-beta.40",
"@babel/plugin-proposal-async-generator-functions": "^7.0.0-beta.40",
"@babel/plugin-transform-runtime": "^7.0.0-beta.40",
"@babel/polyfill": "^7.0.0-beta.40",
"@babel/preset-env": "^7.0.0-beta.40",
"chai": "^1.10.0",
"mocha": "^2.0.1"
},
"dependencies": {
"@babel/runtime": "^7.0.0-beta.40",
"minimist": "^1.2.0",
"node-stream-zip": "^1.4.2"
}
}