{
  "name": "magic-hook",
  "version": "2.0.2",
  "description": "Extends functions with pre hooks.",
  "main": "index.js",
  "jsnext:main": "dist/esnext/index.js",
  "typings": "dist/es5/index.d.ts",
  "scripts": {
    "lint": "tslint -c tslint.json ./src/*.ts",
    "pretest": "npm run transpile",
    "test-markdown": "mos test",
    "test": "npm run lint && mocha test/{**/,/}*.js --compilers js:babel-register && npm run test-markdown",
    "coverage": "istanbul cover _mocha test/{**/,/}*.js -- --compilers js:babel-register -R spec",
    "precoveralls": "istanbul cover _mocha test/{**/,/}*.js --report lcovonly -- --compilers js:babel-register -R spec && npm i coveralls@2",
    "coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
    "transpile": "npm run typescript-transpile && npm run babel-transpile",
    "typescript-transpile": "tsc",
    "babel-transpile": "babel dist/esnext --out-dir dist/es5 --copy-files",
    "md": "mos",
    "prepublish": "npm run transpile"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/zkochan/magic-hook.git"
  },
  "keywords": [
    "pre",
    "pre-hook",
    "pre-hooks",
    "hook",
    "hooks",
    "middleware",
    "middlewares",
    "ext",
    "extension",
    "extensions",
    "extending"
  ],
  "files": [
    "index.js",
    "dist/",
    "typings/"
  ],
  "author": {
    "name": "Zoltan Kochan",
    "email": "zoltan.kochan@gmail.com",
    "url": "http://kochan.io"
  },
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/zkochan/magic-hook/issues"
  },
  "homepage": "https://github.com/zkochan/magic-hook#readme",
  "mos": {
    "plugins": [
      "readme"
    ],
    "installation": {
      "useShortAlias": true
    }
  },
  "publishConfig": {
    "registry": "http://registry.npmjs.org"
  },
  "devDependencies": {
    "babel-cli": "^6.9.0",
    "babel-plugin-add-module-exports": "^0.2.1",
    "babel-preset-es2015": "^6.8.0",
    "babel-register": "^6.9.0",
    "chai": "^3.4.0",
    "install": "^0.8.1",
    "istanbul": "^0.4.2",
    "mocha": "^2.3.3",
    "mos": "^1.3.0",
    "mos-plugin-readme": "^1.0.2",
    "npm": "^3.8.2",
    "sinon": "^1.17.4",
    "sinon-chai": "^2.8.0",
    "tslint": "^3.6.0",
    "typescript": "^1.8.9"
  },
  "dependencies": {
    "flatten": "^1.0.2"
  }
}
