{
  "name": "lemonade",
  "version": "1.1.0",
  "description": "Composable AJAX requests that return a Future data type.",
  "keywords": [
    "Future",
    "monad",
    "functional",
    "composable",
    "AJAX",
    "JSON",
    "http",
    "composable-ajax-requests"
  ],
  "main": "lib/bundle.umd.js",
  "module": "lib/bundle.esm.js",
  "files": ["lib/bundle.umd.js", "lib/bundle.esm.js"],
  "repository": "https://github.com/wking-io/lemonade",
  "author": "Will King <contact@wking.io> (https://www.wking.io/)",
  "license": "Apache-2.0",
  "devDependencies": {
    "@babel/cli": "7.1.2",
    "@babel/plugin-external-helpers": "7.0.0",
    "@babel/preset-env": "7.1.0",
    "babel-tape-runner": "3.0.0",
    "eslint": "5.7.0",
    "eslint-config-prettier": "3.1.0",
    "eslint-plugin-import": "2.14.0",
    "husky": "0.14.3",
    "jsdom": "11.6.2",
    "lint-staged": "6.1.0",
    "prettier": "1.14.3",
    "prettier-eslint-cli": "4.7.1",
    "rollup": "0.66.6",
    "rollup-plugin-babel": "4.0.3",
    "rollup-plugin-commonjs": "9.2.0",
    "rollup-plugin-includepaths": "0.2.3",
    "rollup-plugin-json": "3.1.0",
    "rollup-plugin-node-resolve": "3.4.0",
    "rollup-plugin-terser": "3.0.0",
    "rollup-plugin-uglify": "6.0.0",
    "tap-spec": "5.0.0",
    "tape": "4.8.0"
  },
  "dependencies": {
    "data.task": "3.1.2"
  },
  "scripts": {
    "build": "rollup -c rollup.config.js",
    "build:dist": "rollup -c rollup.dist.config.js",
    "eslint": "eslint 'src/**/*.js'",
    "format":
      "prettier-eslint --trailing-comma es5 --single-quote --write 'src/*/*.js'",
    "precommit": "lint-staged",
    "prepublishOnly":
      "rollup -c && babel-tape-runner __tests__/*.test.js | tap-spec",
    "test": "babel-tape-runner src/__tests__/*.test.js | tap-spec",
    "test:bundle": "babel-tape-runner __tests__/*.test.js | tap-spec"
  },
  "lint-staged": {
    "*.js": [
      "prettier-eslint --trailing-comma es5 --single-quote --write",
      "git add"
    ]
  }
}
