{
  "name": "axaj",
  "version": "1.18.0",
  "description": "A tiny and trivial AJAX library which uses the Fetch API.",
  "keywords": [
    "ajax",
    "fetch-api",
    "xhr",
    "xml-http-request"
  ],
  "author": "Anton Bagdatyev (Tonix)",
  "license": "MIT",
  "main": "./dist/axaj.js",
  "module": "./src/index.js",
  "repository": {
    "type": "git",
    "url": "https://github.com/tonix-tuft/axaj.git"
  },
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1",
    "watch": "WEBPACK_ENV=watch webpack --progress --color --watch",
    "dev-build": "WEBPACK_ENV=watch webpack --progress --color",
    "build": "WEBPACK_ENV=build webpack",
    "publish-git": "npm publish && git push && git push --tags",
    "build-all": "npm run build && npm run dev-build",
    "publish-patch": "npm run build-all && npm version patch && npm run publish-git",
    "publish-minor": "npm run build-all && npm version minor && npm run publish-git",
    "publish-major": "npm run build-all && npm version major && npm run publish-git"
  },
  "devDependencies": {
    "@typescript-eslint/eslint-plugin": "^2.34.0",
    "@typescript-eslint/parser": "^2.34.0",
    "eslint": "^6.8.0",
    "minimist": ">=1.2.2",
    "serialize-javascript": "^3.1.0",
    "terser-webpack-plugin": "^3.1.0",
    "typescript": "^3.9.7",
    "webpack": "^5.49.0",
    "webpack-cli": "^4.8.0"
  },
  "bugs": {
    "url": "https://github.com/tonix-tuft/axaj/issues"
  },
  "homepage": "https://github.com/tonix-tuft/axaj#readme",
  "dependencies": {
    "immutable-linked-ordered-map": "^1.17.0",
    "interval-jitter": "^1.8.1",
    "js-utl": "^4.37.0"
  }
}
