{
    "name": "healthcheck-ping",
    "version": "2.0.1",
    "description": "Express middleware exposing a health check endpoint",
    "main": "lib/healthcheckMiddleware",
    "files": [
        "lib/",
        "LICENSE",
        "README.md",
        "types/index.d.ts"
    ],
    "types": "types/index.d.ts",
    "license": "MIT",
    "author": "Mathias Schreck <mathias.schreck@holidaycheck.com>",
    "contributors": [
        "Christian Rackerseder <christian.rackerseder@holidaycheck.com>"
    ],
    "dependencies": {
        "express": "^4.13.3"
    },
    "devDependencies": {
        "@types/express": "4.16.0",
        "coveralls": "3.0.2",
        "dtslint": "0.3.0",
        "eslint": "5.0.1",
        "eslint-config-holidaycheck": "0.13.1",
        "chai": "4.1.2",
        "mocha": "5.2.0",
        "sinon": "6.1.0",
        "sinon-chai": "3.2.0",
        "supertest": "3.1.0",
        "supertest-as-promised": "4.0.2",
        "istanbul": "0.4.5",
        "pr-log": "3.0.0"
    },
    "scripts": {
        "test:functional": "mocha test/functional --reporter spec --recursive",
        "test:unit": "istanbul test _mocha -- test/unit --reporter spec --recursive",
        "dtslint": "dtslint types",
        "pretest": "eslint . && npm run dtslint",
        "test": "npm run test:unit --coverage && npm run test:functional",
        "posttest": "npm run check-coverage",
        "check-coverage": "istanbul check-coverage --statement 100 --branch 100 --function 100 --lines 100",
        "changelog": "pr-log",
        "coveralls": "cat ./build/coverage/lcov.info | coveralls"
    },
    "repository": {
        "type": "git",
        "url": "git://github.com/holidaycheck/healthcheck-ping.git"
    },
    "keywords": [
        "express",
        "middleware",
        "healthcheck",
        "health",
        "ping"
    ]
}
