forked from joeferner/node-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 799 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 799 Bytes
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
{
"name": "java",
"description": "Bridge API to connect with existing Java APIs.",
"author": "Joe Ferner <joe.ferner@nearinfinity.com>",
"keywords": ["java", "jvm", "bridge"],
"version": "0.0.2",
"engines": { "node" : ">=0.6.0" },
"maintainers": [
{ "name": "Jeff Kunkle", "email": "jeff.kunkle@nearinfinity.com" },
{ "name": "Joe Ferner", "email": "joe.ferner@nearinfinity.com" }
],
"bugs": { "url": "https://github.com/nearinfinity/node-java/issues" },
"license": "MIT",
"repository": { "type": "git", "url": "https://github.com/nearinfinity/node-java.git" },
"dependencies": {
"mnm": "~0.0.3"
},
"devDependencies": {
"nodeunit": "~0.6.4"
},
"scripts": {
"test": "nodeunit test",
"install": "node mnm.js build"
},
"main": "./index.js"
}