{
    "name": "@trailervote/fetch",
    "version": "3.0.3",
    "description": "TrailerVote Api Client",
    "repository": "https://github.com/TrailerVote/trailervote-api-clients/",
    "author": "Derk-Jan Karrenbeld <dj@trailervote.com>",
    "license": "MIT",
    "files": [
        "dist"
    ],
    "scripts": {
        "prebuild": "rimraf dist",
        "build": "tsc",
        "build:restructure": "mv dist/src/* dist",
        "build:fixpath": "sed -i 's/\\.\\././g' dist/user_agent.js",
        "prebuild:test": "rimraf tests/dist",
        "build:test": "tsc --project tests/tsconfig.json",
        "lint": "tslint --project tsconfig.json",
        "pretest": "yarn build:test",
        "test": "tape -r esm tests/dist/**/*.test.js",
        "prepack": "yarn test && yarn build && yarn lint && yarn build:restructure && yarn build:fixpath"
    },
    "dependencies": {
        "@trailervote/express-logger": "^2.1.1",
        "@trailervote/media-types": "^1.3.1",
        "@types/got": "^9.6.10",
        "@types/node": "^13.13.1",
        "agentkeepalive": "^4.1.0",
        "got": "^9.6.0"
    },
    "devDependencies": {
        "esm": "^3.2.25",
        "husky": "^4.2.5",
        "lint-staged": "^10.1.6",
        "prettier": "^2.0.4",
        "rimraf": "^3.0.2",
        "tape": "^4.13.2",
        "tslint": "^6.1.1",
        "tslint-config-prettier": "^1.18.0",
        "typescript": "^3.8.3"
    },
    "husky": {
        "hooks": {
            "pre-commit": "lint-staged"
        }
    },
    "lint-staged": {
        "*.{json,css,md}": [
            "prettier --single-quote --no-semi --arrow-parens always --write"
        ],
        "src/*.{mjs,js,jsx,ts,tsx}": [
            "prettier --single-quote --no-semi --arrow-parens always --write"
        ],
        "*{src,app,__{tests,mocks}__,test,tests}/**/*.{mjs,js,jsx,ts,tsx}": [
            "prettier --single-quote --no-semi --arrow-parens always --write"
        ]
    }
}
