{
  "name": "devour-client",
  "version": "3.2.0",
  "description": "A lightweight, framework agnostic, flexible JSON API client",
  "main": "lib/",
  "scripts": {
    "prepublish": "npm run compile",
    "prepublish-windows": "npm run compile:windows",
    "publish": "git push origin && git push origin --tags",
    "release:patch": "npm version patch && npm publish",
    "release:minor": "npm version minor && npm publish",
    "release:major": "npm version major && npm publish",
    "compile": "rm -rf lib/ && babel -d lib/ src/",
    "compile:windows": "rd /s /q \"lib/\" && babel -d lib/ src/",
    "watch": "babel --watch -d lib/ src/",
    "autofix": "standard --fix",
    "test": "standard && mocha"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/devour-js/devour-client.git"
  },
  "keywords": [
    "Devour",
    "JSON-API",
    "API",
    "API",
    "Client"
  ],
  "author": [
    "Emerson Lackey",
    "Josh Zucker"
  ],
  "license": "ISC",
  "bugs": {
    "url": "https://github.com/devour-js/devour-client/issues"
  },
  "babel": {
    "presets": [
      "@babel/preset-env"
    ]
  },
  "mocha": {
    "recursive": true,
    "require": "@babel/register"
  },
  "homepage": "https://github.com/devour-js/devour-client#readme",
  "devDependencies": {
    "@babel/cli": "^7.4.4",
    "@babel/core": "^7.4.5",
    "@babel/preset-env": "^7.4.5",
    "@babel/preset-es2015": "^7.0.0-beta.53",
    "@babel/register": "^7.4.4",
    "expect.js": "^0.3.1",
    "mocha": "^11.1.0",
    "nyc": "^17.0.0",
    "sinon": "^1.17.4",
    "standard": "^16.0.4"
  },
  "dependencies": {
    "axios": "^1.1.3",
    "es6-promise": ">=3.1.2 <5.0.0",
    "lodash": "^4.17.15",
    "minilog": "^3.0.0",
    "pluralize": "^1.2.1",
    "qs": "^6.1.0"
  }
}
