{
  "name": "njre",
  "version": "1.5.4",
  "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": "^10.0.0",
    "husky": "^9.0.11",
    "jsdoc-to-markdown": "^9.0.0",
    "lint-staged": "^16.0.0",
    "markdown-table-formatter": "^1.6.0",
    "mocha": "^11.0.0",
    "nyc": "^18.0.0",
    "standard": "^17.0.0"
  }
}
