-
Notifications
You must be signed in to change notification settings - Fork 282
/
package.json
46 lines (46 loc) · 951 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
40
41
42
43
44
45
46
{
"name": "java",
"description": "Bridge API to connect with existing Java APIs.",
"author": "Joe Ferner <[email protected]>",
"keywords": [
"java",
"jvm",
"bridge"
],
"version": "0.14.0",
"engines": {
"node": ">=7.0.0"
},
"maintainers": [
{
"name": "Joe Ferner",
"email": "[email protected]"
}
],
"bugs": {
"url": "https://github.com/joeferner/node-java/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/joeferner/node-java.git"
},
"dependencies": {
"async": "^3.2.5",
"find-java-home": "^2.0.0",
"glob": "^10.3.10",
"nan": "^2.18.0",
"node-gyp": "^10.0.1"
},
"devDependencies": {
"chalk": "2.4.1",
"nodeunit": "0.11.3",
"when": "3.7.8"
},
"scripts": {
"install": "node-gyp rebuild",
"test": "node testRunner.js",
"postinstall": "node postInstall.js"
},
"main": "./index.js"
}