-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 1.1 KB
/
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
{
"name": "java_process",
"version": "0.1.0-9",
"description": "Node to Java Ipc using stdin, stdout and stderr, using a small and simple protocol allowing node to interact with java",
"main": "dist/java_process.js",
"typescript": {
"main": "src/java_process.ts"
},
"scripts": {
"build": "typings install && tsc",
"jasmine": "jasmine",
"test": "npm run build && istanbul cover --include-all-sources jasmine && npm run remap-cov",
"build_test": "npm run build && npm run test",
"covupdate": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"codeclimate": "codeclimate-test-reporter < coverage/lcov.info",
"remap-cov": "node remap-cov.js"
},
"author": "Abner Oliveira",
"license": "MIT",
"dependencies": {
"shelljs": "^0.6.0"
},
"devDependencies": {
"codeclimate-test-reporter": "^0.3.1",
"codecov": "^1.0.1",
"coveralls": "^2.11.6",
"istanbul": "^0.4.2",
"jasmine": "^2.4.1",
"jasmine-node": "^1.14.5",
"remap-istanbul": "^0.5.1",
"ts-node": "^0.5.5",
"typescript": "^1.7.5",
"typings": "^0.6.6"
}
}