{
  "name": "require-resolve-hook",
  "version": "1.1.0",
  "description": "Module to hook into the Node.js require and require.resolve function",
  "author": "imcuttle <imcuttle@163.com>",
  "scripts": {
    "test": "npx ava",
    "test:watch": "npx ava --watch",
    "preversion": "npm test",
    "build": "npm run clean && run-p --print-label \"build:**\"",
    "dev": "TSC_OPTIONS=\"--watch\" npm run build",
    "build:es": "tsc $TSC_OPTIONS --outDir es --module es6",
    "build:cjs": "tsc $TSC_OPTIONS --outDir lib",
    "build:tds": "tsc $TSC_OPTIONS --emitDeclarationOnly -d",
    "clean": "rimraf types es lib",
    "prepare": "npm run build",
    "version": "npm run changelog",
    "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md"
  },
  "ava": {
    "files": [
      "__tests__/**/*.test.ts"
    ],
    "extensions": [
      "ts"
    ],
    "require": [
      "ts-node/register"
    ]
  },
  "husky": {
    "hooks": {
      "pre-commit": "pretty-quick --staged",
      "commit-msg": "commitlint -e $HUSKY_GIT_PARAMS"
    }
  },
  "sideEffects": false,
  "engines": {
    "node": ">=10"
  },
  "files": [
    "es",
    "types",
    "lib"
  ],
  "keywords": [
    "imcuttle",
    "require",
    "resolve",
    "hook",
    "require-resolve-hook"
  ],
  "main": "lib",
  "types": "types",
  "license": "MIT",
  "repository": "imcuttle/require-resolve-hook",
  "module": "es",
  "commitlint": {
    "extends": [
      "@commitlint/config-conventional"
    ]
  },
  "devDependencies": {
    "@commitlint/cli": "^11.0.0",
    "@commitlint/config-conventional": "^11.0.0",
    "ava": "^3.13.0",
    "conventional-changelog-cli": "^2.1.0",
    "husky": "^4.3.0",
    "npm-run-all": "^4.1.5",
    "prettier": "^2.1.2",
    "pretty-quick": "^3.1.0",
    "rimraf": "^3.0.2",
    "ts-jest": "^26.4.2",
    "ts-node": "^9.0.0",
    "typescript": "^4.0.3"
  }
}
