{
  "name": "dodos",
  "version": "2.9.0",
  "description": "Pandas-inspired iterator-based data wrangling library for js",
  "main": "lib/dodo.js",
  "scripts": {
    "build": "npm run build:lib && npm run build:umd",
    "build:lib": "babel src --out-dir lib",
    "build:umd": "webpack",
    "clean": "rimraf lib dist coverage .nyc_output",
    "test": "ava",
    "test:watch": "ava --watch",
    "test:cov": "nyc ava",
    "test:covreport": "nyc report --reporter=html && open coverage/index.html",
    "coverage": "npm run test:cov && npm run test:covreport",
    "prepush": "npm test",
    "prepublish": "git pull origin master && npm test && npm run clean && npm run build",
    "postpublish": "git push origin master --no-verify"
  },
  "files": [
    "dist",
    "lib",
    "src"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/nfcampos/dodos.git"
  },
  "author": "Nuno Campos <nuno.campos@me.com> (https://github.com/nfcampos)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/nfcampos/dodos/issues"
  },
  "homepage": "https://github.com/nfcampos/dodos",
  "devDependencies": {
    "ava": "~0.14.0",
    "babel-cli": "~6.7.7",
    "babel-core": "~6.7.7",
    "babel-eslint": "~6.0.3",
    "babel-loader": "~6.2.4",
    "babel-polyfill": "~6.7.4",
    "babel-preset-es2015": "~6.6.0",
    "babel-require": "~1.0.1",
    "benchmark": "~2.1.0",
    "d3-dsv": "~0.3.2",
    "eslint": "~2.8.0",
    "husky": "~0.11.4",
    "npm-check": "~5.2.1",
    "nyc": "~6.4.0",
    "rimraf": "~2.5.2",
    "table": "~3.7.8",
    "webpack": "~1.13.0"
  },
  "dependencies": {
    "invariant": "~2.2.1",
    "lodash": "~4.11.0",
    "transducers.js": "~0.3.2"
  },
  "babel": {
    "presets": [
      "es2015"
    ],
    "env": {
      "development": {
        "sourceMaps": "inline"
      }
    }
  },
  "ava": {
    "babel": "inherit",
    "require": [
      "babel-register",
      "babel-polyfill"
    ]
  }
}
