{
  "name": "http-status",
  "version": "1.8.1",
  "description": "Interact with HTTP status code",
  "homepage": "https://github.com/adaltas/node-http-status",
  "author": "David Worms <david@adaltas.com> (https://www.adaltas.com)",
  "keywords": [
    "http",
    "connect",
    "frontend",
    "status",
    "express"
  ],
  "license": "BSD-3-Clause",
  "repository": {
    "type": "git",
    "url": "https://github.com/adaltas/node-http-status"
  },
  "bugs": {
    "email": "open@adaltas.com",
    "url": "http://github.com/adaltas/node-http-status/issues"
  },
  "devDependencies": {
    "@commitlint/cli": "^17.1.2",
    "@commitlint/config-conventional": "^17.1.0",
    "@types/mocha": "^9.1.1",
    "@types/node": "^18.7.15",
    "@types/should": "^13.0.0",
    "coffeescript": "2.7.0",
    "commitlint": "^17.1.2",
    "husky": "^8.0.1",
    "mocha": "10.0.0",
    "should": "13.2.3",
    "standard-version": "^9.5.0",
    "ts-node": "^10.9.1",
    "typescript": "^4.8.2"
  },
  "coffeelintConfig": {
    "indentation": {
      "level": "error",
      "value": 2
    },
    "line_endings": {
      "level": "error",
      "value": "unix"
    },
    "max_line_length": {
      "level": "ignore"
    }
  },
  "contributors": [
    {
      "name": "David Worms",
      "email": "david@adaltas.com"
    },
    {
      "name": "Daniel Gasienica",
      "email": "daniel@gasienica.ch"
    }
  ],
  "mocha": {
    "throw-deprecation": true,
    "require": [
      "should",
      "coffeescript/register.js",
      "ts-node/register"
    ],
    "inline-diffs": true,
    "timeout": 40000,
    "reporter": "spec",
    "recursive": true
  },
  "main": "lib/index.js",
  "types": "lib/index.d.ts",
  "engines": {
    "node": ">= 0.4.0"
  },
  "scripts": {
    "build": "coffee -b -o lib src && cp src/index.d.ts lib",
    "prepare": "husky install",
    "pretest": "npm run build",
    "prerelease": "npm run build && git update-index --refresh && git diff-index --quiet HEAD --",
    "release": "standard-version",
    "release:minor": "standard-version --release-as minor",
    "release:patch": "standard-version --release-as patch",
    "release:major": "standard-version --release-as major",
    "postrelease": "git push --follow-tags origin master",
    "test": "mocha \"test/**/*.{coffee,ts}\""
  }
}
