-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.1 KB
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
{
"name": "locate-java-home",
"version": "1.1.2",
"description": "Locates JAVA_HOME on any platform, and can differentiate between different versions.",
"main": "js/es5/index.js",
"module": "js/es6/index.js",
"typings": "js/es5/index",
"repository": {
"type": "git",
"url": "git+https://github.com/jvilk/locate-java-home.git"
},
"scripts": {
"prepare": "tsc && tsc -p tsconfig.es6.json && javac -source 1.6 -target 1.6 ts/test/fixtures/EnvironmentTest.java",
"test": "mocha js/es5/test --timeout 30000"
},
"bin": {
"locate-java-home": "./bin/locate-java-home"
},
"author": {
"email": "jvilk@cs.umass.edu",
"name": "John Vilk"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/jvilk/locate-java-home/issues"
},
"homepage": "https://github.com/jvilk/locate-java-home#readme",
"dependencies": {
"async": "^2.6.1",
"semver": "^5.5.1"
},
"devDependencies": {
"typescript": "^3.0.1",
"@types/mocha": "^5.2.5",
"@types/async": "^2.0.49",
"@types/semver": "^5.5.0",
"mocha": "^5.2.0",
"@types/node": "^10.7.1"
}
}