{
  "name": "@zcorky/fz",
  "version": "1.2.15",
  "description": "A simply fetch library",
  "main": "lib/index.js",
  "repository": "https://github.com/zcorky/fz",
  "author": "Zero",
  "license": "MIT",
  "scripts": {
    "dev": "tsc -w",
    "build": "npm run clean && tsc",
    "clean": "rimraf -rf lib",
    "test": "NODE_ENV=test jest -w 1 --detectOpenHandles",
    "coverage": "codecov",
    "prepublish": "npm run build"
  },
  "devDependencies": {
    "@types/isomorphic-fetch": "^0.0.35",
    "@types/jest": "^27.0.1",
    "@types/node": "^16.9.2",
    "codecov": "^3.8.3",
    "create-test-server": "^2.4.0",
    "jest": "^27.2.0",
    "mocha": "^5.2.0",
    "node-fetch": "2.6.4",
    "rimraf": "^2.6.2",
    "source-map-support": "^0.5.9",
    "ts-jest": "^27.0.5",
    "ts-node": "^10.2.1",
    "typescript": "^4.4.3"
  },
  "files": [
    "lib"
  ],
  "jest": {
    "roots": [
      "test"
    ],
    "transform": {
      "^.+\\.tsx?$": "ts-jest"
    },
    "testRegex": "test/.*\\.spec\\.(ts|tsx)$",
    "moduleDirectories": [
      "node_modules",
      "src"
    ],
    "moduleFileExtensions": [
      "ts",
      "tsx",
      "js",
      "jsx"
    ],
    "coverageDirectory": "./coverage/",
    "collectCoverage": true,
    "collectCoverageFrom": [
      "src/**/*.{ts,tsx}"
    ],
    "coverageThreshold": {
      "global": {
        "branches": 70,
        "functions": 60,
        "lines": 80,
        "statements": -60
      }
    },
    "testTimeout": 10000
  },
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "@zcorky/delay": "^1.0.1",
    "@zcorky/lru": "^1.0.5",
    "@zcorky/query-string": "^1.0.2",
    "@zodash/url-join": "^0.1.6",
    "isomorphic-fetch": "^3.0.0"
  }
}
