版博士V2.0程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

65 lines
1.7 KiB

  1. {
  2. "name": "@jsdevtools/ez-spawn",
  3. "version": "3.0.4",
  4. "description": "Simple, consistent sync or async process spawning",
  5. "keywords": [
  6. "cli",
  7. "process",
  8. "spawn",
  9. "exec",
  10. "sync",
  11. "async"
  12. ],
  13. "author": {
  14. "name": "James Messinger",
  15. "url": "https://jamesmessinger.com"
  16. },
  17. "contributors": [
  18. "Randall Krauskopf (http://github.com/rkrauskopf)",
  19. "James Messinger (https://jamesmessinger.com)"
  20. ],
  21. "license": "MIT",
  22. "homepage": "https://jstools.dev/ez-spawn",
  23. "repository": {
  24. "type": "git",
  25. "url": "https://github.com/JS-DevTools/ez-spawn.git"
  26. },
  27. "main": "lib/index.js",
  28. "typings": "lib/index.d.ts",
  29. "files": [
  30. "lib"
  31. ],
  32. "scripts": {
  33. "clean": "shx rm -rf .nyc_output coverage",
  34. "lint": "eslint lib test",
  35. "test": "npm run test:node && npm run test:typescript && npm run lint",
  36. "test:node": "mocha",
  37. "test:typescript": "tsc --noEmit test/specs/typescript-definition.spec.ts",
  38. "coverage": "nyc node_modules/mocha/bin/mocha",
  39. "upgrade": "npm-check -u && npm audit fix",
  40. "bump": "bump --tag --push --all",
  41. "release": "npm run upgrade && npm run clean && npm test && npm run bump"
  42. },
  43. "devDependencies": {
  44. "@jsdevtools/eslint-config": "^1.0.3",
  45. "@jsdevtools/version-bump-prompt": "^6.0.5",
  46. "@types/node": "^14.0.23",
  47. "chai": "^4.2.0",
  48. "eslint": "^7.4.0",
  49. "mocha": "^8.0.1",
  50. "npm-check": "^5.9.2",
  51. "nyc": "^15.1.0",
  52. "shx": "^0.3.2",
  53. "typescript": "^3.9.6"
  54. },
  55. "dependencies": {
  56. "call-me-maybe": "^1.0.1",
  57. "cross-spawn": "^7.0.3",
  58. "string-argv": "^0.3.1",
  59. "type-detect": "^4.0.8"
  60. },
  61. "engines": {
  62. "node": ">=10"
  63. }
  64. }