-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
41 lines (41 loc) · 902 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
{
"name": "jmx",
"version": "0.8.0-dev",
"description": "Bridge library to communicate with Java applications through JMX.",
"homepage": "http://zuazo.github.io/node-jmx",
"bugs": "https://github.com/zuazo/node-jmx/issues",
"main": "index.js",
"scripts": {
"test": "make style test"
},
"repository": {
"type": "git",
"url": "https://github.com/zuazo/node-jmx.git"
},
"keywords": [
"jmx",
"java",
"jvm",
"bridge"
],
"author": {
"name": "Xabier de Zuazo",
"email": "xabier@zuazo.org",
"url": "https://github.com/zuazo"
},
"license": "Apache-2.0",
"readmeFilename": "README.md",
"engines": {
"node": ">=0.10.0"
},
"dependencies": {
"async": "~1.5.0",
"java": "~0.9.0"
},
"devDependencies": {
"mocha": "~2.0.1",
"jscoverage" : "~0.5.9",
"mocha-lcov-reporter" : "0.0.1",
"coveralls": "2.11.2"
}
}