-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
39 lines (39 loc) · 914 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
35
36
37
38
39
{
"name": "esjava",
"version": "0.0.8",
"description": "EXPERIMENTAL Java => ES6 Transpiler",
"dependencies": {
"ast-types": "^0.8.16",
"escodegen": "^1.8.0",
"java-parser": "0.0.1"
},
"devDependencies": {
"babel-cli": "^6.7.7",
"babel-preset-es2015": "^6.6.0",
"browserify": "^13.0.0",
"coffee-script": "^1.10.0",
"coffeeify": "^2.0.1",
"uglify-js": "^2.6.2"
},
"scripts": {
"prepublish": "test/test.sh && ./node_modules/coffee-script/bin/coffee -o bin/ -c src/ && sed -i '1i#!/usr/bin/env node' bin/cmd.js"
},
"repository": {
"type": "git",
"url": "https://github.com/mazko/ESJava.git"
},
"keywords": [
"java",
"transpiler",
"es6"
],
"author": "Oleg Mazko",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/mazko/ESJava/issues"
},
"preferGlobal": true,
"bin": {
"esjava": "bin/cmd.js"
}
}