-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 872 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 872 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
27
28
29
30
31
{
"name": "java-caller-example-module",
"version": "1.0.0",
"description": "Example of project using java-caller as a module",
"main": "lib/index.js",
"files": [
"lib"
],
"bin": {
"java-caller-example-module": "lib/index.js"
},
"scripts": {
"install-local-cli": "npm install && npm link --force",
"run:source": "node lib/index.js",
"run:source:verbose": "env DEBUG=java-caller node lib/index.js",
"run:cli": "java-caller-example-module",
"run:cli:verbose": "env DEBUG=java-caller java-caller-example-module",
"test": "echo \"I strongly encourage you to implement test cases and code coverage, with mocha and nyc for example :)\""
},
"keywords": [
"java-caller",
"example",
"module",
"manual"
],
"author": "Nicolas Vuillamy",
"license": "MIT",
"dependencies": {
"java-caller": "^2.1.0"
}
}