forked from kylestev/jvm.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 931 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
{
"name": "jvm",
"version": "0.0.20",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/kylestev/jvm.js.git"
},
"main": "./lib/index.js",
"scripts": {
"compile": "./node_modules/.bin/babel -d lib/ src/",
"docs": "./node_modules/.bin/esdoc -c esdoc.json",
"lint": "eslint src",
"prepublish": "npm run compile",
"test": "./node_modules/.bin/eslint src"
},
"dependencies": {
"adm-zip": "^0.4.7",
"binary-parser": "^1.1.5",
"cjson": "^0.3.2",
"lodash": "^3.10.1",
"promisify-node": "^0.3.0"
},
"devDependencies": {
"babel-cli": "^6.2.0",
"babel-eslint": "^4.1.3",
"babel-plugin-check-es2015-constants": "^6.2.0",
"babel-plugin-transform-es2015-arrow-functions": "^6.1.18",
"babel-plugin-transform-es2015-block-scoping": "^6.1.18",
"babel-preset-es2015": "^6.1.18",
"esdoc": "^0.4.3",
"eslint": "^1.7.3"
}
}