{
  "name": "@nlabs/fetch-mock",
  "version": "1.0.2",
  "description": "Mock http requests made using fetch.",
  "main": "lib/index.js",
  "scripts": {
    "clean": "lex clean",
    "build": "lex compile -r",
    "lint": "eslint ./src --ext .js,.jsx,.ts,.tsx",
    "test": "lex test",
    "prepublishOnly": "npm test && npm run build",
    "publish:major": "npm version major && npm run publish:tags && npm publish",
    "publish:minor": "npm version minor && npm run publish:tags && npm publish",
    "publish:patch": "npm version patch && npm run publish:tags && npm publish",
    "publish:tags": "git push --tags && git push origin HEAD",
    "update": "lex update -i"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/nitrogenlabs/fetch-mock.git"
  },
  "keywords": [
    "fetch",
    "http",
    "mock",
    "testing",
    "spy",
    "xhr",
    "ajax"
  ],
  "author": "Rhys Evans",
  "contributors": [
    {
      "name": "Giraldo Rosales",
      "email": "giraldo@nitrogenlabs.com",
      "url": "https://nitrogenlabs.com"
    }
  ],
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/nitrogenlabs/fetch-mock/issues"
  },
  "homepage": "https://nitrogenlabs.com",
  "dependencies": {
    "glob-to-regexp": "^0.4.1",
    "lodash": "^4.17.21",
    "path-to-regexp": "^6.2.1"
  },
  "engines": {
    "node": ">=18"
  },
  "devDependencies": {
    "@types/jest": "^29.5.0",
    "@types/node": "^18.15.5",
    "eslint": "^8.36.0",
    "eslint-config-styleguidejs": "^3.2.1",
    "typescript": "^5.0.2"
  }
}
