{
  "name": "oxid",
  "version": "0.0.5",
  "description": "Isomorphic http request based on rxjs observable",
  "main": "./dist/cjs/index.js",
  "module": "./dist/esm/index.js",
  "types": "./dist/types/index.d.ts",
  "browser": {
    "./dist/cjs/adapters/http.js": "./dist/cjs/adapters/xhr.js",
    "./dist/esm/adapters/http.js": "./dist/esm/adapters/xhr.js",
    "./dist/cjs/utils/node/isURLSearchParams.js": "./dist/cjs/utils/browser/isURLSearchParams.js",
    "./dist/esm/utils/node/isURLSearchParams.js": "./dist/esm/utils/browser/isURLSearchParams.js"
  },
  "engines": {
    "npm": ">=6",
    "node": ">=8"
  },
  "config": {
    "commitizen": {
      "path": "cz-conventional-changelog"
    }
  },
  "nyc": {
    "include": [
      "src/*.ts",
      "src/**/*.ts"
    ],
    "exclude": [
      "node_modules"
    ],
    "extension": [
      ".ts"
    ],
    "reporter": [
      "json"
    ],
    "reportDir": "coverage/nyc",
    "all": true,
    "produce-source-map": true,
    "sourceMap": true
  },
  "lint-staged": {
    "*.{ts,js}": [
      "prettier --write --single-quote --print-width 120 --jsx-bracket-same-line true",
      "tslint --fix",
      "git add"
    ]
  },
  "size-limit": [
    {
      "path": "dist/cjs/index.js",
      "limit": "10 KB"
    },
    {
      "path": "dist/esm/index.js",
      "limit": "9 KB"
    }
  ],
  "husky": {
    "hooks": {
      "commit-msg": "commitlint -e",
      "pre-commit": "lint-staged",
      "pre-push": "npm-run-all lint:* prepare test:unit"
    }
  },
  "scripts": {
    "prepublishOnly ": "npm-run-all prepush test",
    "prepare": "npm-run-all build:clean build:metadata build",
    "test": "npm-run-all test:*",
    "test:unit": "cross-env TS_NODE_FILES=true TS_NODE_PROJECT=tsconfig.json mocha --reporter dot --require ts-node/register --require source-map-support/register --recursive --bail \"spec/**/*.ts\"",
    "test:coverage": "nyc npm run test:unit",
    "test:karma": "karma start --single-run",
    "test:size": "size-limit",
    "lint:code": "tslint -c tslint.json -p tsconfig.json \"src/**/*.ts\" \"spec/**/*.ts\"",
    "lint:circular": "depcruise --validate .dependency-cruiser.json -x \"^node_modules\" src",
    "build": "tsc -b --verbose ./src/tsconfig.cjs.json ./src/tsconfig.esm.json ./src/tsconfig.types.json ./spec/tsconfig.json",
    "build:metadata": "ts-node ./scripts/buildMetadata.ts",
    "build:clean": "shx rm -rf ./dist",
    "commit": "git-cz -S",
    "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/kwonoj/oxid.git"
  },
  "keywords": [
    "Rx",
    "RxJS",
    "ReactiveX",
    "ReactiveExtensions",
    "Streams",
    "Observables",
    "Observable",
    "Stream",
    "ES6",
    "ES2015",
    "http",
    "xmlhttprequest",
    "ajax"
  ],
  "author": "OJ Kwon <kwon.ohjoong@gmail.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/kwonoj/oxid/issues"
  },
  "homepage": "https://github.com/kwonoj/oxid#readme",
  "devDependencies": {
    "@commitlint/cli": "^7.0.0",
    "@commitlint/config-angular": "^7.0.1",
    "@types/chai": "^4.1.5",
    "@types/chai-subset": "^1.3.1",
    "@types/mocha": "^5.2.5",
    "@types/node": "^10.11.2",
    "@types/sinon": "^5.0.2",
    "@types/webpack": "^4.4.13",
    "chai": "^4.2.0",
    "chai-subset": "^1.6.0",
    "commitizen": "2.10.1",
    "conventional-changelog-cli": "^2.0.1",
    "cross-env": "^5.2.0",
    "cz-conventional-changelog": "2.1.0",
    "dependency-cruiser": "^4.6.0",
    "husky": "^1.0.1",
    "istanbul-instrumenter-loader": "^3.0.1",
    "karma": "^3.0.0",
    "karma-chrome-launcher": "^2.2.0",
    "karma-coverage-istanbul-reporter": "^2.0.4",
    "karma-mocha": "^1.3.0",
    "karma-webpack": "^3.0.5",
    "lint-staged": "^7.3.0",
    "mocha": "^5.2.0",
    "npm-run-all": "^4.1.3",
    "nyc": "^13.0.1",
    "prettier": "^1.14.3",
    "rewiremock": "^3.7.8",
    "rxjs": "^6.3.3",
    "shx": "^0.3.2",
    "sinon": "^6.3.4",
    "size-limit": "^0.20.0",
    "source-map-support": "^0.5.9",
    "ts-loader": "^5.2.1",
    "ts-node": "^7.0.1",
    "tslint": "^5.11.0",
    "tslint-no-unused-expression-chai": "^0.1.3",
    "typescript": "^3.1.1",
    "url-search-params-polyfill": "^5.0.0",
    "webpack": "^4.20.2"
  },
  "peerDependencies": {
    "rxjs": "6.x"
  },
  "dependencies": {
    "follow-redirects": "^1.5.8",
    "getroot": "^1.0.0",
    "is-buffer": "^2.0.3",
    "tslib": "^1.9.3"
  }
}
