{
  "name": "install-local",
  "version": "4.1.0",
  "description": "A small module for installing local packages. Works for both npm >= 5 and older versions.",
  "main": "dist/src/index.js",
  "type": "module",
  "scripts": {
    "all": "npm run clean && npm run build && npm run lint && npm run test",
    "clean": "rimraf -g dist reports .stryker-tmp \"?(src|test)/*.tsbuildinfo\"",
    "build": "tsc -b",
    "lint": "npm run lint:eslint && npm run lint:format",
    "lint:eslint": "eslint .",
    "lint:format": "prettier --check .",
    "lint:format:fix": "node --run lint:format -- --write",
    "test": "npm run test:unit && npm run test:integration",
    "test:unit": "mocha \"test/unit/**/*.ts\"",
    "test:integration": "mocha --timeout 30000 \"test/integration/**/*.ts\"",
    "test:mutation": "stryker run",
    "start": "tsc -b -w",
    "preversion": "npm run all",
    "release": "commit-and-tag-version"
  },
  "bin": {
    "install-local": "bin/install-local"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/nicojs/node-install-local.git"
  },
  "keywords": [
    "npm",
    "install",
    "local",
    "yarn"
  ],
  "author": "Nico Jansen <jansennico@gmail.com>",
  "license": "Apache-2.0",
  "bugs": {
    "url": "https://github.com/nicojs/node-install-local/issues"
  },
  "engines": {
    "node": ">=20"
  },
  "homepage": "https://github.com/nicojs/node-install-local#readme",
  "devDependencies": {
    "@eslint/js": "^9.38.0",
    "@stryker-mutator/core": "^9.2.0",
    "@stryker-mutator/mocha-runner": "^9.2.0",
    "@stryker-mutator/typescript-checker": "^9.2.0",
    "@types/chai": "^5.2.2",
    "@types/chai-as-promised": "8.0.2",
    "@types/mocha": "^10.0.10",
    "@types/node": "^24.8.1",
    "@types/semver": "^7.7.1",
    "@types/sinon": "^17.0.4",
    "@types/sinon-chai": "^4.0.0",
    "@types/uniqid": "^5.3.4",
    "chai": "^6.2.0",
    "chai-as-promised": "^8.0.2",
    "commit-and-tag-version": "^12.6.0",
    "eslint": "^9.38.0",
    "eslint-plugin-chai-friendly": "^1.1.0",
    "mocha": "^11.7.4",
    "prettier": "^3.6.2",
    "rimraf": "^6.0.1",
    "semver": "^7.7.3",
    "sinon": "^21.0.0",
    "sinon-chai": "^4.0.1",
    "typescript": "^5.9.3",
    "typescript-eslint": "^8.46.1"
  },
  "dependencies": {
    "execa": "^9.6.0",
    "uniqid": "^5.4.0"
  }
}
