{
  "name": "ponds",
  "version": "0.1.0",
  "author": "Rafa Mel",
  "description": "An express middleware for better data and error handling per route",
  "keywords": [
    "express",
    "middleware",
    "routes"
  ],
  "scripts": {
    "start": "npm run watch",
    "build": "nps build",
    "watch": "nps watch",
    "fix": "nps fix",
    "lint": "nps lint",
    "lint:test": "nps lint.test",
    "lint:md": "nps lint.md",
    "lint:scripts": "nps lint.scripts",
    "lint:typings": "nps lint.typings",
    "test": "nps test",
    "test:watch": "nps test.watch",
    "validate": "nps validate",
    "update": "nps update",
    "clean": "nps clean",
    "docs": "nps docs",
    "nps": "nps",
    "jake": "jake"
  },
  "main": "./index.js",
  "types": "./typings/index.d.ts",
  "license": "MIT",
  "homepage": "https://github.com/rafamel/ponds",
  "repository": {
    "type": "git",
    "url": "https://github.com/rafamel/ponds"
  },
  "bugs": {
    "url": "https://github.com/rafamel/ponds/issues"
  },
  "devDependencies": {
    "@babel/cli": "^7.0.0",
    "@babel/core": "^7.0.0",
    "@babel/plugin-proposal-class-properties": "^7.0.0",
    "@babel/plugin-proposal-decorators": "^7.0.0",
    "@babel/plugin-proposal-object-rest-spread": "^7.0.0",
    "@babel/preset-env": "^7.0.0",
    "@babel/register": "^7.0.0",
    "@types/jest": "^23.3.10",
    "babel-core": "^7.0.0-bridge.0",
    "babel-eslint": "^10.0.1",
    "babel-jest": "^23.4.2",
    "babel-plugin-module-resolver": "^3.1.1",
    "coveralls": "^3.0.2",
    "cross-env": "^5.2.0",
    "eslint": "^5.10.0",
    "eslint-config-prettier": "^3.3.0",
    "eslint-config-standard": "^12.0.0",
    "eslint-import-resolver-babel-module": "^5.0.0-beta.1",
    "eslint-plugin-babel": "^5.3.0",
    "eslint-plugin-import": "^2.14.0",
    "eslint-plugin-jest": "^22.1.2",
    "eslint-plugin-node": "^8.0.0",
    "eslint-plugin-prettier": "^3.0.0",
    "eslint-plugin-promise": "^4.0.1",
    "eslint-plugin-standard": "^4.0.0",
    "eslint-restricted-globals": "^0.2.0",
    "express": "^4.16.4",
    "husky": "^1.2.0",
    "jake": "^8.0.19",
    "jest-cli": "^23.6.0",
    "markdownlint-cli": "^0.13.0",
    "nps": "^5.9.3",
    "npx": "^10.2.0",
    "onchange": "^5.2.0",
    "prettier": "^1.15.3",
    "shx": "^0.3.2",
    "supertest": "^3.3.0",
    "tslint": "^5.11.0",
    "tslint-config-prettier": "^1.17.0",
    "typedoc": "^0.13.0",
    "typedoc-plugin-external-module-name": "^1.1.3",
    "typescript": "^3.2.2"
  },
  "dependencies": {
    "@types/express": "^4.16.0"
  },
  "engines": {
    "node": ">=8.0.0"
  },
  "jest": {
    "testEnvironment": "node",
    "collectCoverage": true,
    "collectCoverageFrom": [
      "src/**/*.{js,ts,jsx}"
    ],
    "modulePathIgnorePatterns": [
      "<rootDir>/build"
    ]
  },
  "husky": {
    "hooks": {
      "pre-commit": "cross-env MSG=\"Committing in:\" nps validate"
    }
  }
}