{
  "name": "module-hook",
  "version": "2.1.3",
  "description": "Register hook for module require.",
  "main": "dist/index.js",
  "typings": "dist/index.d.ts",
  "scripts": {
    "test": "npm run lint && NODE_ENV=test mocha --trace-warnings",
    "build": "npm run lint && rm -rf ./dist && ./node_modules/.bin/tsc",
    "lint": "./node_modules/.bin/tslint --format prose -c ./tslint.json src/**/*.ts test/**/*.ts",
    "cov": "NODE_ENV=test nyc --reporter=html mocha",
    "ci": "npm run test",
    "authors": "git log --format='%aN <%aE>' | sort -u > AUTHORS",
    "prepublishOnly": "npm run ci && npm run build"
  },
  "files": [
    "src",
    "dist"
  ],
  "license": "MIT",
  "keywords": [
    "module",
    "hook"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/midwayjs/module-hook.git"
  },
  "dependencies": {
    "semver": "^5.4.1",
    "shimmer": "^1.2.0"
  },
  "devDependencies": {
    "@types/chai": "^4.0.10",
    "@types/mocha": "^2.2.41",
    "@types/node": "^8.10.39",
    "chai": "^4.1.2",
    "mocha": "^4.1.0",
    "nyc": "^11.4.1",
    "nyc-ts-patch": "^1.0.0",
    "sinon": "^6.3.1",
    "ts-node": "^7.0.1",
    "tslint": "^5.11.0",
    "typescript": "^3.0.1"
  },
  "nyc": {
    "include": [
      "src/*.ts",
      "src/**/*.ts"
    ],
    "exclude": [
      "src/index.ts",
      "**/*.d.ts"
    ],
    "extension": [
      ".ts"
    ],
    "require": [
      "ts-node/register"
    ],
    "reporter": [
      "text",
      "json",
      "html",
      "lcovonly"
    ],
    "all": true
  }
}
