forked from ibmruntimes/node-java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 908 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
{
"name": "java",
"description": "Bridge API to connect with existing Java APIs.",
"author": "Joe Ferner <joe@fernsroth.com>",
"keywords": [
"java",
"jvm",
"bridge"
],
"version": "0.11.1",
"engines": {
"node": ">=7.0.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.3",
"lodash": "4.17.14",
"nan": "2.14.0"
},
"devDependencies": {
"chalk": "2.4.1",
"nodeunit": "0.11.3",
"when": "3.7.8"
},
"scripts": {
"test": "node testRunner.js",
"postinstall": "node postInstall.js"
},
"main": "./index.js"
}