{
  "name": "rxjs-ajax-request",
  "version": "1.0.5",
  "description": "Simple utility for ajax requests that uses rxjs/ajax. Suitable only if you use rxjs in your project.",
  "main": "dist/index.js",
  "repository": "git@github.com:maximlysenko/rxjs-ajax-request.git",
  "author": "Max Lysenko",
  "license": "MIT",
  "private": false,
  "scripts": {
    "build": "rollup -c",
    "clean": "rimraf dist",
    "lint": "eslint src --ext .ts",
    "limit": "size-limit",
    "test": "jest test",
    "test:watch": "jest --watch",
    "test:coverage": "jest --coverage --collectCoverageFrom=src/**/*.ts",
    "prepare": "npm run clean && npm run lint && npm test && npm run build"
  },
  "typings": "dist/index.d.ts",
  "keywords": [
    "rxjs",
    "ajax"
  ],
  "files": [
    "dist",
    "index.d.ts"
  ],
  "peerDependencies": {
    "querystring": "^0.2.0",
    "rxjs": "^6.0.0"
  },
  "devDependencies": {
    "@rollup/plugin-typescript": "^4.1.2",
    "@size-limit/preset-small-lib": "^4.5.0",
    "@types/jest": "^25.2.3",
    "@types/node": "^14.0.5",
    "@typescript-eslint/eslint-plugin": "^3.0.2",
    "@typescript-eslint/parser": "^3.0.2",
    "eslint": "^6.8.0",
    "husky": "^4.2.3",
    "jest": "^26.0.1",
    "rimraf": "^3.0.2",
    "rollup": "^1.32.1",
    "rollup-plugin-uglify": "^6.0.4",
    "size-limit": "^4.5.0",
    "ts-jest": "^26.0.0",
    "typescript": "^3.9.3"
  },
  "husky": {
    "hooks": {
      "pre-commit": "npm run lint && npm run test && npm run limit"
    }
  },
  "size-limit": [
    {
      "path": "dist/index.js",
      "limit": "500b"
    }
  ],
  "jest": {
    "preset": "ts-jest"
  }
}
