{
  "name": "corrode",
  "version": "1.0.6",
  "description": "A batteries-included library for reading binary data.",
  "main": "dist/index.js",
  "scripts": {
    "build": "babel src --out-dir dist --source-maps",
    "watch": "npm run build -- --watch",
    "test": "mocha test --compilers js:babel-register ./test",
    "lint": "eslint src",
    "docs": "esdoc2 -c esdoc.json",
    "coverage": "nyc --require babel-core/register --reporter=lcov mocha",
    "coverall": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
    "prepublish": "npm run build && npm run docs"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/screeny05/corrode.git"
  },
  "author": "Sebastian Langer <sl@scn.cx>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/screeny05/corrode/issues"
  },
  "homepage": "https://github.com/screeny05/corrode",
  "devDependencies": {
    "babel-cli": "^6.10.1",
    "babel-eslint": "^6.1.0",
    "babel-plugin-add-module-exports": "^0.2.1",
    "babel-preset-es2015": "^6.9.0",
    "babel-preset-stage-0": "^6.5.0",
    "babel-register": "^6.9.0",
    "buffer-safe": "^1.0.0",
    "chai": "^3.5.0",
    "coveralls": "^2.11.9",
    "esdoc2": "^2.1.3",
    "esdoc2-coverage-plugin": "^2.0.0",
    "esdoc2-ecmascript-proposal-plugin": "^2.0.0",
    "esdoc2-publish-html-plugin": "^2.0.1",
    "esdoc2-standard-plugin": "^2.1.0",
    "eslint": "^3.0.0",
    "eslint-config-xo": "^0.15.2",
    "eslint-plugin-babel": "^3.3.0",
    "istanbul": "^0.4.4",
    "lodash": "^4.13.1",
    "mocha": "^2.5.3",
    "nyc": "^6.6.1"
  },
  "dependencies": {
    "bl": "^1.1.2",
    "lodash": "^4.17.2",
    "readable-stream": "^2.2.2"
  },
  "eslintConfig": {
    "extends": "xo/esnext",
    "rules": {
      "indent": [
        "error",
        4
      ],
      "keyword-spacing": 0,
      "space-before-function-paren": [
        2,
        "never"
      ],
      "space-before-blocks": [
        2,
        "never"
      ]
    }
  }
}
