package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "@npmcli/promise-spawn",
  3. "version": "6.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": "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": "eslint \"**/*.js\"",
  20. "lintfix": "npm run lint -- --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. },
  26. "tap": {
  27. "check-coverage": true,
  28. "nyc-arg": [
  29. "--exclude",
  30. "tap-snapshots/**"
  31. ]
  32. },
  33. "devDependencies": {
  34. "@npmcli/eslint-config": "^4.0.0",
  35. "@npmcli/template-oss": "4.11.0",
  36. "minipass": "^4.0.0",
  37. "spawk": "^1.7.1",
  38. "tap": "^16.0.1"
  39. },
  40. "engines": {
  41. "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
  42. },
  43. "templateOSS": {
  44. "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
  45. "version": "4.11.0"
  46. },
  47. "dependencies": {
  48. "which": "^3.0.0"
  49. }
  50. }