{
    "name": "pasrel",
    "version": "0.1.0",
    "main": "dist/index.js",
    "types": "dist/index.d.ts",
    "author": "Raphaël Thériault <raphael_theriault@outlook.com>",
    "description": "A typed, composable and functional web server framework",
    "license": "MIT",
    "homepage": "https://raftario.github.io/pasrel/",
    "bugs": "https://github.com/raftario/pasrel/issues",
    "repository": "raftario/pasrel",
    "files": [
        "dist/**/*"
    ],
    "engines": {
        "node": ">=8"
    },
    "scripts": {
        "build": "tsc",
        "build:examples": "tsc -p examples",
        "test": "ava tests/**/*.ts",
        "example": "ts-node --dir examples -r ./examples/tsconfig-paths-bootstrap.js",
        "lint:fix": "eslint --fix src/**/*.ts && prettier --write **/*.{json,md,yml}",
        "lint:check": "eslint src/**/*.ts && prettier --check **/*.{json,md,yml}",
        "doc": "typedoc --out docs src",
        "prepublishOnly": "yarn test && yarn lint:check && yarn build"
    },
    "dependencies": {
        "@types/node": "*",
        "busboy": "^0.3",
        "get-stream": "^5",
        "mime": "^2",
        "pump": "^3",
        "ts-toolbelt": "^6"
    },
    "devDependencies": {
        "@types/busboy": "^0.2.3",
        "@types/mime": "^2.0.1",
        "@types/pump": "^1.1.0",
        "@typescript-eslint/eslint-plugin": "^2.30.0",
        "@typescript-eslint/parser": "^2.30.0",
        "ava": "^3.8.1",
        "eslint": "^6.8.0",
        "eslint-config-prettier": "^6.11.0",
        "eslint-plugin-ava": "^10.3.0",
        "eslint-plugin-prettier": "^3.1.3",
        "eslint-plugin-tsdoc": "^0.2.4",
        "eslint-plugin-unicorn": "^19.0.1",
        "prettier": "^2.0.5",
        "ts-node": "^8.9.1",
        "tsconfig-paths": "^3.9.0",
        "typedoc": "^0.17.6",
        "typescript": "^3.8.3"
    },
    "ava": {
        "files": [
            "tests/**/*"
        ],
        "extensions": [
            "ts"
        ],
        "require": [
            "ts-node/register"
        ]
    }
}
