-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
42 lines (42 loc) · 1002 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
{
"name": "js-to-java",
"version": "2.8.0",
"description": "easy way to wrap js object to java object",
"main": "index.js",
"files": [
"index.js",
"lib"
],
"scripts": {
"test": "mocha -R spec -t 3000 -r should test/*.test.js",
"test-cov": "nyc mocha -- -t 3000 -r should test/*.test.js",
"ci": "npm run jshint && npm run test-cov",
"jshint": "jshint lib index.js",
"contributor": "git-contributor"
},
"repository": {
"type": "git",
"url": "git://github.com/node-modules/js-to-java.git"
},
"keywords": [
"js",
"java",
"object",
"class"
],
"author": "dead_horse <dead_horse@qq.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/node-modules/js-to-java/issues"
},
"homepage": "https://github.com/node-modules/js-to-java",
"dependencies": {},
"devDependencies": {
"cov": "*",
"git-contributor": "^2.1.5",
"jshint": "2",
"mocha": "*",
"nyc": "^15.1.0",
"should": "10.0.0"
}
}