{
  "name": "script-runner",
  "version": "0.1.8",
  "description": "Invoke multiple commands, running in parallel / sequential, matching npm scripts",
  "homepage": "https://github.com/paulpflug",
  "author": {
    "name": "Paul Pflugradt",
    "email": "paul.pflugradt@gmail.com"
  },
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git://github.com/paulpflug/script-runner"
  },
  "main": "lib/index.js",
  "bin": {
    "run": "./run.js",
    "run-seq": "./run.js",
    "run-para": "./run-para.js",
    "run-npm": "./run-npm.js"
  },
  "files": [
    "*.js",
    "lib/*.js"
  ],
  "keywords": [
    "parallel",
    "sequential",
    "npm script",
    "shell"
  ],
  "dependencies": {
    "better-spawn": "^1.0.4",
    "minimatch": "^3.0.4",
    "yaku": "^0.18.6"
  },
  "devDependencies": {
    "coffeescript": "^2.3.1",
    "snapy": "^0.1.6",
    "coffee-loader": "^0.9.0"
  },
  "scripts": {
    "build": "coffee --no-header --compile --output lib/ src/*.coffee",
    "test": "snapy",
    "test2": "nothing here 2",
    "test:2": "nothingHere2",
    "test:3": "nothingHere3",
    "watch": "snapy --watch",
    "preversion": "npm test",
    "version": "npm run build && git add .",
    "postversion": "git push && git push --tags && npm publish"
  }
}
