{
  "name": "praline",
  "version": "0.3.1",
  "description": "Parallel/sequence task wrapper for Node-style callbacks.",
  "main": "praline.js",
  "scripts": {
    "build": "npm run transpile && npm run size",
    "transpile": "babel src --source-root src -s -d .",
    "size": "size=$(gzip-size $npm_package_main) && echo \"gzip size: $size / $(pretty-bytes $size)\"",
    "test": "jshint {src,tests}/**.js && mocha --compilers js:babel/register tests/parallel.js",
    "release": "npm run build && git commit -am $npm_package_version && git tag $npm_package_version && git push && git push --tags && npm publish"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/developit/praline.git"
  },
  "keywords": [
    "parallel",
    "callbacks",
    "task"
  ],
  "homepage": "https://github.com/developit/praline",
  "author": "Jason Miller <jason@developit.ca>",
  "license": "MIT",
  "devDependencies": {
    "babel": "^5.8.23",
    "chai": "^3.2.0",
    "gzip-size": "^2.1.0",
    "jshint": "^2.8.0",
    "mocha": "^2.2.5",
    "pre-commit": "^1.0.7",
    "pretty-bytes": "^2.0.1"
  },
  "pre-commit": [
    "test",
    "build"
  ]
}
