package.json 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. {
  2. "name": "npm-run-all",
  3. "version": "4.1.5",
  4. "description": "A CLI tool to run multiple npm-scripts in parallel or sequential.",
  5. "bin": {
  6. "run-p": "bin/run-p/index.js",
  7. "run-s": "bin/run-s/index.js",
  8. "npm-run-all": "bin/npm-run-all/index.js"
  9. },
  10. "main": "lib/index.js",
  11. "files": [
  12. "bin",
  13. "lib",
  14. "docs"
  15. ],
  16. "engines": {
  17. "node": ">= 4"
  18. },
  19. "scripts": {
  20. "_mocha": "mocha \"test/*.js\" --timeout 120000",
  21. "clean": "rimraf .nyc_output coverage jsdoc \"test-workspace/{build,test.txt}\"",
  22. "docs": "jsdoc -c jsdoc.json",
  23. "lint": "eslint bin lib scripts test \"test-workspace/tasks/*.js\"",
  24. "pretest": "node scripts/make-slink.js && npm run lint",
  25. "preversion": "npm test",
  26. "postversion": "git push && git push --tags",
  27. "test": "nyc --require babel-register npm run _mocha",
  28. "watch": "npm run _mocha -- --require babel-register --watch --growl",
  29. "codecov": "nyc report -r lcovonly && codecov"
  30. },
  31. "dependencies": {
  32. "ansi-styles": "^3.2.1",
  33. "chalk": "^2.4.1",
  34. "cross-spawn": "^6.0.5",
  35. "memorystream": "^0.3.1",
  36. "minimatch": "^3.0.4",
  37. "pidtree": "^0.3.0",
  38. "read-pkg": "^3.0.0",
  39. "shell-quote": "^1.6.1",
  40. "string.prototype.padend": "^3.0.0"
  41. },
  42. "devDependencies": {
  43. "@types/node": "^4.9.1",
  44. "babel-plugin-transform-async-to-generator": "^6.24.1",
  45. "babel-preset-power-assert": "^2.0.0",
  46. "babel-register": "^6.26.0",
  47. "codecov": "^3.1.0",
  48. "eslint": "^4.19.1",
  49. "eslint-config-mysticatea": "^12.0.0",
  50. "fs-extra": "^7.0.1",
  51. "mocha": "^5.2.0",
  52. "nyc": "^11.9.0",
  53. "p-queue": "^2.4.2",
  54. "power-assert": "^1.6.1",
  55. "rimraf": "^2.6.2",
  56. "yarn": "^1.12.3"
  57. },
  58. "repository": "mysticatea/npm-run-all",
  59. "keywords": [
  60. "cli",
  61. "command",
  62. "commandline",
  63. "tool",
  64. "npm",
  65. "npm-scripts",
  66. "run",
  67. "sequential",
  68. "serial",
  69. "parallel",
  70. "task"
  71. ],
  72. "author": "Toru Nagashima",
  73. "license": "MIT",
  74. "bugs": {
  75. "url": "https://github.com/mysticatea/npm-run-all/issues"
  76. },
  77. "homepage": "https://github.com/mysticatea/npm-run-all"
  78. }