{
  "name": "snarfetch",
  "description": "A helpful fetch wrapper for NodeJS",
  "author": "Andrew Aylett",
  "version": "0.3.0",
  "license": "Apache-2.0",
  "repository": {
    "type": "git",
    "url": "https://github.com/andrewaylett/snarfetch.git"
  },
  "type": "module",
  "source": "src/index.ts",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "scripts": {
    "build": "npm run buildonly",
    "buildonly": "tsc",
    "test": "NODE_OPTIONS=--experimental-vm-modules jest --testPathIgnorePatterns='<rootDir>/(?:.+?)/postbuild.*|.*\\.js'",
    "postbuild": "NODE_OPTIONS=--experimental-vm-modules jest src/postbuild.test.ts",
    "lint": "eslint src --ext .ts",
    "prebuild": "npm run test",
    "pretest": "npm run lint",
    "lint:fix": "npm run lint -- --fix",
    "dev": "npm run lint:fix && npm run buildonly && npm run test",
    "prepublishOnly": "npm run build"
  },
  "prettier": {
    "semi": true,
    "singleQuote": true,
    "trailingComma": "all"
  },
  "devDependencies": {
    "@tsconfig/node16": "1.0.3",
    "@types/jest": "28.1.8",
    "@types/node": "16.11.56",
    "@types/semver": "7.3.12",
    "@typescript-eslint/eslint-plugin": "5.36.1",
    "@typescript-eslint/parser": "5.36.1",
    "eslint": "8.22.0",
    "eslint-config-prettier": "8.5.0",
    "eslint-plugin-prettier": "4.2.1",
    "extend-expect": "0.2.0",
    "jest": "28.1.3",
    "prettier": "2.7.1",
    "semver": "7.3.7",
    "ts-jest": "28.0.8",
    "ts-node": "10.9.1",
    "tslib": "2.4.0",
    "typescript": "4.8.2"
  },
  "dependencies": {
    "node-fetch": "^3.2.10",
    "self-throttle": "^0.3.1"
  }
}
