{
  "name": "kilto",
  "version": "0.4.1",
  "description": "A state management system with easy async and low boilerplate.",
  "scripts": {
    "eslint": "eslint ./",
    "eslint-fix": "eslint --fix ./",
    "test": "NODE_ENV=test mocha --compilers js:babel-register --recursive",
    "flow": "flow; test $? -eq 0 -o $? -eq 2",
    "check": "npm run test && npm run eslint",
    "build-umd-dev": "NODE_ENV=development webpack",
    "build-umd-prod": "NODE_ENV=production webpack && gzip < umd/Kilto.min.js > umd/Kilto.min.js.gz",
    "build-umd": "npm run build-umd-dev && npm run build-umd-prod",
    "build-common": "babel ./src --out-dir ./lib",
    "build": "npm run build-common && npm run build-umd",
    "watch": "babel --watch ./src --out-dir ./lib",
    "clean": "rm -rf ./lib",
    "prepare": "npm run clean && npm run build && npm run check && echo \"Ready to publish! Commit your changes to git then run 'npm version' and 'npm publish'\""
  },
  "main": "./lib/index.js",
  "files": [
    "lib",
    "src"
  ],
  "keywords": [
    "state",
    "immutable",
    "javacript",
    "boilerplate",
    "functional",
    "kilto",
    "simple",
    "async",
    "await",
    "action",
    "time",
    "traveling",
    "predictable"
  ],
  "authors": [
    "Colton Voege <colton@mimirhq.com> (https://github.com/cvoege)"
  ],
  "license": "MIT",
  "devDependencies": {
    "babel-cli": "^6.18.0",
    "babel-core": "^6.18.2",
    "babel-eslint": "^7.1.1",
    "babel-loader": "^6.2.8",
    "babel-plugin-transform-async-to-generator": "^6.16.0",
    "babel-plugin-transform-object-rest-spread": "^6.19.0",
    "babel-plugin-transform-runtime": "^6.15.0",
    "babel-preset-es2015": "^6.18.0",
    "babel-preset-react": "^6.16.0",
    "chai": "^3.5.0",
    "chai-spies": "^0.7.1",
    "eslint": "^3.10.2",
    "eslint-plugin-flowtype": "^2.19.0",
    "eslint-plugin-react": "^6.7.1",
    "flow-bin": "^0.35.0",
    "mocha": "^3.1.1",
    "webpack": "^1.13.3"
  },
  "dependencies": {}
}
