UNPKG

charlike

Version:

Small, fast, simple and streaming project scaffolder for myself, but not only. Supports hundreds of template engines through the @JSTransformers API or if you want custom `render` function passed through options

73 lines (72 loc) 1.92 kB
{ "name": "npm-run-all", "version": "4.0.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": ">= 4" }, "scripts": { "_mocha": "mocha \"test/*.js\" --compilers js:babel-register --timeout 60000", "clean": "rimraf .nyc_output coverage jsdoc \"test-workspace/{build,test.txt}\"", "docs": "jsdoc -c jsdoc.json", "lint": "eslint bin lib scripts test \"test-workspace/tasks/*.js\"", "pretest": "node scripts/make-slink.js && npm run lint", "preversion": "npm test", "postversion": "git push && git push --tags", "test": "nyc npm run _mocha", "watch": "npm run _mocha -- --watch --growl", "codecov": "nyc report -r lcovonly && codecov" }, "dependencies": { "chalk": "^1.1.3", "cross-spawn": "^5.0.1", "minimatch": "^3.0.2", "ps-tree": "^1.0.1", "read-pkg": "^2.0.0", "shell-quote": "^1.6.1", "string.prototype.padend": "^3.0.0" }, "devDependencies": { "@types/node": "^4.0.30", "babel-preset-power-assert": "^1.0.0", "babel-register": "^6.4.3", "codecov": "^1.0.1", "eslint": "^3.12.2", "eslint-config-mysticatea": "^7.0.1", "jsdoc": "^3.4.0", "mocha": "^3.2.0", "nyc": "^10.0.0", "power-assert": "^1.2.0", "rimraf": "^2.4.4" }, "repository": "mysticatea/npm-run-all", "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" }