-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
61 lines (61 loc) · 1.45 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "njre",
"version": "1.4.0",
"description": "Easily install and use JRE from a Node application.",
"keywords": [
"jre",
"java",
"javaw",
"jdk",
"openjdk",
"adoptopenjdk",
"adoptium"
],
"homepage": "https://github.com/raftario/njre",
"bugs": "https://github.com/raftario/njre/issues",
"main": "index.js",
"scripts": {
"test": "mocha tests/test.js",
"coverage": "nyc npm run test",
"lint": "standard --fix",
"docs": "jsdoc2md index.js lib/*.js > DOCS.md && markdown-table-formatter DOCS.md"
},
"repository": "github:nvuillam/njre",
"author": "Raphaël Thériault <raphael_theriault@outlook.com> (raphaeltheriault.com), Nicolas Vuillamy <nicolas.vuillamy@gmail.com> (nicolas.vuillamy.fr)",
"license": "MIT",
"files": [
"lib/*.js"
],
"engines": {
"node": ">=8"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run docs && git add DOCS.md"
}
},
"lint-staged": {
"*.js": [
"standard --fix",
"git add"
]
},
"private": false,
"dependencies": {
"command-exists-promise": "^2.0.2",
"debug": "^4.3.4",
"node-fetch": "2.7.0",
"tar": "^7.1.0",
"yauzl": "^3.1.3"
},
"devDependencies": {
"eslint": "^9.2.0",
"husky": "^9.0.11",
"jsdoc-to-markdown": "^9.0.0",
"lint-staged": "^15.2.2",
"markdown-table-formatter": "^1.6.0",
"mocha": "^10.4.0",
"nyc": "^17.0.0",
"standard": "^17.0.0"
}
}