package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "@npmcli/promise-spawn",
  3. "version": "8.0.2",
  4. "files": [
  5. "bin/",
  6. "lib/"
  7. ],
  8. "main": "./lib/index.js",
  9. "description": "spawn processes the way the npm cli likes to do",
  10. "repository": {
  11. "type": "git",
  12. "url": "git+https://github.com/npm/promise-spawn.git"
  13. },
  14. "author": "GitHub Inc.",
  15. "license": "ISC",
  16. "scripts": {
  17. "test": "tap",
  18. "snap": "tap",
  19. "lint": "npm run eslint",
  20. "lintfix": "npm run eslint -- --fix",
  21. "posttest": "npm run lint",
  22. "postsnap": "npm run lintfix --",
  23. "postlint": "template-oss-check",
  24. "template-oss-apply": "template-oss-apply --force",
  25. "eslint": "eslint \"**/*.{js,cjs,ts,mjs,jsx,tsx}\""
  26. },
  27. "tap": {
  28. "check-coverage": true,
  29. "nyc-arg": [
  30. "--exclude",
  31. "tap-snapshots/**"
  32. ]
  33. },
  34. "devDependencies": {
  35. "@npmcli/eslint-config": "^5.0.0",
  36. "@npmcli/template-oss": "4.23.4",
  37. "spawk": "^1.7.1",
  38. "tap": "^16.0.1"
  39. },
  40. "engines": {
  41. "node": "^18.17.0 || >=20.5.0"
  42. },
  43. "templateOSS": {
  44. "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
  45. "version": "4.23.4",
  46. "publish": true
  47. },
  48. "dependencies": {
  49. "which": "^5.0.0"
  50. }
  51. }