diff options
author | 2020-11-16 00:10:28 +0100 | |
---|---|---|
committer | 2020-11-16 00:10:28 +0100 | |
commit | e06ec920f7a5d784e674c4c4b4e6d1da3dc7391d (patch) | |
tree | 55713f725f77b44ebfec86e4eec3ce33e71458ca /node_modules/npm-run-all/package.json | |
download | website_creator-e06ec920f7a5d784e674c4c4b4e6d1da3dc7391d.tar.gz website_creator-e06ec920f7a5d784e674c4c4b4e6d1da3dc7391d.tar.bz2 website_creator-e06ec920f7a5d784e674c4c4b4e6d1da3dc7391d.zip |
api, login, auth
Diffstat (limited to 'node_modules/npm-run-all/package.json')
-rw-r--r-- | node_modules/npm-run-all/package.json | 108 |
1 files changed, 108 insertions, 0 deletions
diff --git a/node_modules/npm-run-all/package.json b/node_modules/npm-run-all/package.json new file mode 100644 index 0000000..1862460 --- /dev/null +++ b/node_modules/npm-run-all/package.json @@ -0,0 +1,108 @@ +{ + "_from": "npm-run-all@^4.1.5", + "_id": "npm-run-all@4.1.5", + "_inBundle": false, + "_integrity": "sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ==", + "_location": "/npm-run-all", + "_phantomChildren": {}, + "_requested": { + "type": "range", + "registry": true, + "raw": "npm-run-all@^4.1.5", + "name": "npm-run-all", + "escapedName": "npm-run-all", + "rawSpec": "^4.1.5", + "saveSpec": null, + "fetchSpec": "^4.1.5" + }, + "_requiredBy": [ + "/" + ], + "_resolved": "https://registry.npmjs.org/npm-run-all/-/npm-run-all-4.1.5.tgz", + "_shasum": "04476202a15ee0e2e214080861bff12a51d98fba", + "_spec": "npm-run-all@^4.1.5", + "_where": "/home/pruss/Dev/3-minute-website", + "author": { + "name": "Toru Nagashima" + }, + "bin": { + "run-p": "bin/run-p/index.js", + "run-s": "bin/run-s/index.js", + "npm-run-all": "bin/npm-run-all/index.js" + }, + "bugs": { + "url": "https://github.com/mysticatea/npm-run-all/issues" + }, + "bundleDependencies": false, + "dependencies": { + "ansi-styles": "^3.2.1", + "chalk": "^2.4.1", + "cross-spawn": "^6.0.5", + "memorystream": "^0.3.1", + "minimatch": "^3.0.4", + "pidtree": "^0.3.0", + "read-pkg": "^3.0.0", + "shell-quote": "^1.6.1", + "string.prototype.padend": "^3.0.0" + }, + "deprecated": false, + "description": "A CLI tool to run multiple npm-scripts in parallel or sequential.", + "devDependencies": { + "@types/node": "^4.9.1", + "babel-plugin-transform-async-to-generator": "^6.24.1", + "babel-preset-power-assert": "^2.0.0", + "babel-register": "^6.26.0", + "codecov": "^3.1.0", + "eslint": "^4.19.1", + "eslint-config-mysticatea": "^12.0.0", + "fs-extra": "^7.0.1", + "mocha": "^5.2.0", + "nyc": "^11.9.0", + "p-queue": "^2.4.2", + "power-assert": "^1.6.1", + "rimraf": "^2.6.2", + "yarn": "^1.12.3" + }, + "engines": { + "node": ">= 4" + }, + "files": [ + "bin", + "lib", + "docs" + ], + "homepage": "https://github.com/mysticatea/npm-run-all", + "keywords": [ + "cli", + "command", + "commandline", + "tool", + "npm", + "npm-scripts", + "run", + "sequential", + "serial", + "parallel", + "task" + ], + "license": "MIT", + "main": "lib/index.js", + "name": "npm-run-all", + "repository": { + "type": "git", + "url": "git+https://github.com/mysticatea/npm-run-all.git" + }, + "scripts": { + "_mocha": "mocha \"test/*.js\" --timeout 120000", + "clean": "rimraf .nyc_output coverage jsdoc \"test-workspace/{build,test.txt}\"", + "codecov": "nyc report -r lcovonly && codecov", + "docs": "jsdoc -c jsdoc.json", + "lint": "eslint bin lib scripts test \"test-workspace/tasks/*.js\"", + "postversion": "git push && git push --tags", + "pretest": "node scripts/make-slink.js && npm run lint", + "preversion": "npm test", + "test": "nyc --require babel-register npm run _mocha", + "watch": "npm run _mocha -- --require babel-register --watch --growl" + }, + "version": "4.1.5" +} |