{
  "name": "poquito",
  "version": "0.2.1",
  "description": "Framework for building event sourced microservices",
  "main": "dist/index.js",
  "scripts": {
    "test": "npm run compile && ./node_modules/.bin/mocha --compilers js:babel-register --recursive",
    "clean": "if [ -d ./dist-bin ]; then rm -rf ./dist-bin; fi && if [ -d ./dist ]; then rm -rf ./dist; fi",
    "compile-bin": "./node_modules/.bin/babel -d dist-bin/ bin/",
    "compile-src": "./node_modules/.bin/babel -d dist/ src/",
    "compile": "npm run compile-src && npm run compile-bin",
    "coverage": "npm run clean && npm run compile && ./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha -- --ui bdd -R spec -t 5000 --compilers js:babel-register --recursive"
  },
  "bin": {
    "poquito": "./dist-bin/poquito.js"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/complyify/poquito.git"
  },
  "keywords": [
    "complyify",
    "poquito",
    "microservice",
    "event sourcing",
    "cqrs",
    "ddd"
  ],
  "author": "Sean Bruton <sean@complyify.com> (http://github.com/sbruton)",
  "license": "AGPL-3.0",
  "bugs": {
    "url": "https://github.com/complyify/poquito/issues"
  },
  "homepage": "https://github.com/complyify/poquito#readme",
  "devDependencies": {
    "babel": "^6.5.2",
    "babel-cli": "^6.10.1",
    "babel-preset-es2015": "^6.9.0",
    "babel-register": "^6.9.0",
    "chai": "^3.5.0",
    "chai-as-promised": "^5.3.0",
    "istanbul": "^1.0.0-alpha.2",
    "mocha": "^2.5.3"
  },
  "dependencies": {
    "body-parser": "^1.15.2",
    "bunyan": "^1.8.1",
    "comcom": "^0.2.4",
    "express": "^4.14.0",
    "mongoose": "^4.5.1",
    "rabbot": "^1.0.2",
    "uuid": "^2.0.2"
  }
}
