{
  "name": "tarn",
  "version": "1.1.5",
  "description": "Simple and robust resource pool for node.js",
  "main": "lib/tarn.js",
  "types": "lib/tarn.d.ts",
  "license": "MIT",
  "scripts": {
    "test": "mocha --slow 10 --timeout 5000 --reporter spec tests.js",
    "test-bail": "mocha --slow 10 --timeout 5000 --reporter spec --bail tests.js",
    "build": "tsc",
    "clean": "rm -rf lib",
    "prepublishOnly": "tsc",
    "format": "prettier **/*.{js,ts} --write"
  },
  "author": {
    "name": "Sami Koskimäki",
    "email": "sami.koskimaki@vincit.com",
    "url": "https://github.com/koskimas"
  },
  "repository": {
    "type": "git",
    "url": "git://github.com/vincit/tarn.js.git"
  },
  "engines": {
    "node": ">=4.0.0"
  },
  "keywords": [
    "pool",
    "pooling",
    "throttle"
  ],
  "files": [
    "README.md",
    "LICENSE",
    "lib/*"
  ],
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "*.{js,ts}": [
      "prettier --write",
      "git add"
    ]
  },
  "devDependencies": {
    "@types/node": "^10.5.2",
    "bluebird": "^3.5.3",
    "expect.js": "^0.3.1",
    "husky": "^1.3.1",
    "lint-staged": "^8.0.4",
    "mocha": "^5.2.0",
    "prettier": "^1.13.7",
    "typescript": "3.2.4"
  },
  "dependencies": {}
}
