{
  "name": "blanks",
  "version": "0.2.0",
  "description": "immutable blanks",
  "keywords": [
    "immutable",
    "flow",
    "type-check",
    "blank",
    "empty",
    "array",
    "object",
    "dictionary"
  ],
  "author": "Irakli Gozalishvili <rfobic@gmail.com> (http://jeditoolkit.com)",
  "main": "index",
  "devDependencies": {
    "babel-cli": "6.24.1",
    "babel-preset-flow-node": "^1.0.2",
    "babel-register": "6.24.1",
    "blue-tape": "^1.0.0",
    "flow-bin": "0.48.0",
    "flow-copy-source": "1.1.0",
    "husky": "^0.14.0",
    "lint-staged": "^4.0.0",
    "prettier": "^1.4.4",
    "documentation": "^4.0.0-rc.1"
  },
  "scripts": {
    "test": "npm run test:flow && npm run test:tape",
    "test:tape": "blue-tape -r babel-register test/**/*.js",
    "test:flow": "flow check",
    "build:clear": "rm -rf ./*.js && rm -rf ./*.js.flow",
    "build:types": "flow-copy-source -v src .",
    "build:node": "babel --out-dir . src",
    "build:api": "documentation readme --section=API src/index.js",
    "build:docs": "documentation build --document-exported src/** -f html --o docs",
    "build": "npm run build:node && npm run build:types",
    "prepublish": "npm run build && npm test",
    "precommit": "lint-staged"
  },
  "lint-staged": {
    "*.js": [
      "prettier --parser flow --no-semi --write",
      "git add"
    ]
  },
  "repository": "https://github.com/Gozala/blanks",
  "license": "MIT"
}