{
  "name": "fetchr",
  "version": "0.7.14",
  "description": "Fetchr augments Flux applications by allowing Flux stores to be used on server and client to fetch data",
  "main": "./libs/fetcher.js",
  "browser": "./libs/fetcher.client.js",
  "scripts": {
    "format": "prettier --write .",
    "format:check": "prettier --check .",
    "lint": "npm run lint:client && npm run lint:server && npm run format:check",
    "lint:client": "eslint libs/util/ libs/fetcher.client.js",
    "lint:server": "eslint --parser-options=ecmaVersion:latest libs/fetcher.js",
    "test": "npm run test:unit && npm run test:functional",
    "test:coverage": "nyc --reporter=lcov npm run test:unit",
    "test:unit": "NODE_ENV=test mocha tests/unit/ --recursive --reporter spec --timeout 20000 --exit --require tests/unit/setup.js",
    "test:functional": "NODE_ENV=test mocha tests/functional/*.test.js --reporter spec --exit -t 10000"
  },
  "repository": {
    "type": "git",
    "url": "git@github.com:yahoo/fetchr"
  },
  "author": "Rajiv Tirumalareddy <rajivtirum@yahoo-inc.com>",
  "licenses": [
    {
      "type": "BSD",
      "url": "https://github.com/yahoo/fetchr/blob/master/LICENSE.md"
    }
  ],
  "dependencies": {
    "fumble": "^0.1.0"
  },
  "devDependencies": {
    "abortcontroller-polyfill": "^1.7.3",
    "chai": "^4.2.0",
    "eslint": "^8.44.0",
    "express": "^4.17.1",
    "fetch-mock": "^10.1.1",
    "mocha": "^10.0.0",
    "mockery": "^2.0.0",
    "node-fetch": "^2.6.2",
    "nyc": "^17.0.0",
    "prettier": "^3.0.0",
    "puppeteer": "^23.2.1",
    "sinon": "^18.0.0",
    "supertest": "7.0.0",
    "webpack": "^5.51.1"
  },
  "keywords": [
    "yahoo",
    "flux",
    "react",
    "fetchr",
    "dispatchr"
  ],
  "prettier": {
    "singleQuote": true,
    "tabWidth": 4
  }
}
