UNPKG

yarn-run-all

Version:

A CLI tool to run multiple npm-scripts in parallel or sequential.

83 lines (82 loc) 2.27 kB
{ "name": "yarn-run-all", "version": "3.1.1", "description": "A CLI tool to run multiple npm-scripts in parallel or sequential.", "bin": { "run-p": "bin/run-p/index.js", "run-s": "bin/run-s/index.js", "npm-run-all": "bin/npm-run-all/index.js" }, "main": "lib/index.js", "files": [ "bin", "lib" ], "engines": { "node": ">= 0.10", "npm": ">= 2" }, "scripts": { "preversion": "npm run build", "postversion": "git push && git push --tags", "pretest": "node scripts/make-slink.js", "clean": "rimraf bin coverage jsdoc lib", "lint": "eslint src test \"test-workspace/tasks/*\"", "build": "babel-node src/bin/run-s/index.js clean lint build:*", "build:babel": "babel src --out-dir .", "build:jsdoc": "jsdoc -c jsdoc.json", "test": "npm run lint && nyc --require babel-register mocha \"test/*.js\" --reporter progress --timeout 60000", "watch": "mocha \"test/*.js\" --compilers js:babel-register --timeout 60000 --watch --growl", "coveralls": "nyc report --reporter=text-lcov | coveralls" }, "dependencies": { "chalk": "^1.1.3", "cross-spawn": "^4.0.0", "minimatch": "^3.0.2", "object-assign": "^4.0.1", "pinkie-promise": "^2.0.1", "ps-tree": "^1.0.1", "read-pkg": "^1.1.0", "read-pkg-up": "^1.0.1", "shell-quote": "^1.6.1", "string.prototype.padend": "^3.0.0" }, "devDependencies": { "babel-cli": "^6.4.0", "babel-core": "^6.4.0", "babel-plugin-espower": "^2.0.0", "babel-preset-es2015": "^6.3.13", "babel-register": "^6.4.3", "coveralls": "^2.11.4", "eslint": "^2.13.1", "eslint-config-mysticatea": "^4.0.0", "jsdoc": "^3.4.0", "mocha": "^2.3.4", "nyc": "^7.1.0", "power-assert": "^1.2.0", "rimraf": "^2.4.4" }, "repository": { "type": "git", "url": "https://github.com/mysticatea/npm-run-all.git" }, "keywords": [ "cli", "command", "commandline", "tool", "npm", "npm-scripts", "run", "sequential", "serial", "parallel", "task" ], "author": "Toru Nagashima", "license": "MIT", "bugs": { "url": "https://github.com/mysticatea/npm-run-all/issues" }, "homepage": "https://github.com/mysticatea/npm-run-all" }