forked from joeferner/node-java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.11 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
42
43
44
45
46
47
48
{
"name": "java",
"description": "Bridge API to connect with existing Java APIs.",
"author": "Joe Ferner <joe@fernsroth.com>",
"keywords": [
"java",
"jvm",
"bridge"
],
"version": "0.10.0",
"engines": {
"node": ">=0.10.0"
},
"maintainers": [
{
"name": "Joe Ferner",
"email": "joe@fernsroth.com"
}
],
"bugs": {
"url": "https://github.com/joeferner/node-java/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/joeferner/node-java.git"
},
"dependencies": {
"async": "2.6.1",
"find-java-home": "0.2.0",
"glob": "7.1.2",
"lodash": "4.17.10",
"nan": "2.10.0",
"request": "2.88.0",
"targz": "1.0.1"
},
"devDependencies": {
"chalk": "2.4.1",
"nodeunit": "0.11.3",
"when": "3.7.8"
},
"scripts": {
"install": "node isBuildRequired.js && node installJDK.js && node-gyp rebuild || echo Skipping Java rebuild",
"test": "node testRunner.js",
"postinstall": "node isBuildRequired.js && node postInstall.js || echo Skipping Java rebuild post install"
},
"main": "./index.js"
}