{
    "name": "supertest-fetch",
    "version": "2.0.0",
    "description": "Supertest with WHATWG fetch like interface.",
    "main": "lib/index.js",
    "types": "types/index.d.ts",
    "engines": {
        "node": ">=18.0.0"
    },
    "type": "commonjs",
    "files": [
        "lib/**/*",
        "types/**/*"
    ],
    "scripts": {
        "test": "npm run build && npm run lint && npm run test:unittest",
        "precommit:test": "npm run build && lint-staged && npm run precommit:unittest",
        "build": "tsc",
        "clean": "rm -rf dist coverage",
        "test:unittest": "tsc -p test && c8 mocha 'test/**/*.@(ts|js)'",
        "precommit:unittest": "tsc -p test && mocha --reporter progress 'test/**/*.@(ts|js)'",
        "lint": "eslint src test",
        "prepare": "husky install && npm run build",
        "prepublishOnly": "npm run build && npm test",
        "semantic-release": "semantic-release"
    },
    "lint-staged": {
        "**/*.@(ts|tsx)}": [
            "prettier --write",
            "eslint"
        ],
        "**/*.@(js|cjs|mjs|jsx)}": [
            "prettier --write"
        ]
    },
    "repository": {
        "type": "git",
        "url": "git+https://github.com/jwalton/node-supertest-fetch.git"
    },
    "keywords": [
        "supertest",
        "api",
        "test",
        "node"
    ],
    "author": "Jason Walton",
    "license": "MIT",
    "bugs": {
        "url": "https://github.com/jwalton/node-supertest-fetch/issues"
    },
    "homepage": "https://github.com/jwalton/node-supertest-fetch#readme",
    "devDependencies": {
        "@eslint/js": "^9.5.0",
        "@types/chai": "^4.3.8",
        "@types/chai-as-promised": "^7.1.6",
        "@types/express": "^4.17.19",
        "@types/mocha": "^10.0.2",
        "@types/node": "^20.14.9",
        "@types/pem": "^1.14.2",
        "c8": "^10.1.2",
        "chai": "^4.4.1",
        "chai-as-promised": "^7.1.2",
        "coveralls": "^3.1.1",
        "eslint": "^8.57.0",
        "eslint-plugin-import": "^2.29.1",
        "express": "^4.18.2",
        "husky": "^9.0.11",
        "lint-staged": "^15.2.7",
        "mocha": "^10.5.2",
        "pem": "^1.14.8",
        "prettier": "^3.3.2",
        "semantic-release": "^24.0.0",
        "ts-node": "^10.9.1",
        "typescript": "^5.2.2",
        "typescript-eslint": "^7.14.1"
    }
}
