package.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "name": "@npmcli/run-script",
  3. "version": "9.1.0",
  4. "description": "Run a lifecycle script for a package (descendant of npm-lifecycle)",
  5. "author": "GitHub Inc.",
  6. "license": "ISC",
  7. "scripts": {
  8. "test": "tap",
  9. "eslint": "eslint \"**/*.{js,cjs,ts,mjs,jsx,tsx}\"",
  10. "lint": "npm run eslint",
  11. "lintfix": "npm run eslint -- --fix",
  12. "postlint": "template-oss-check",
  13. "snap": "tap",
  14. "posttest": "npm run lint",
  15. "template-oss-apply": "template-oss-apply --force"
  16. },
  17. "devDependencies": {
  18. "@npmcli/eslint-config": "^5.0.0",
  19. "@npmcli/template-oss": "4.24.1",
  20. "spawk": "^1.8.1",
  21. "tap": "^16.0.1"
  22. },
  23. "dependencies": {
  24. "@npmcli/node-gyp": "^4.0.0",
  25. "@npmcli/package-json": "^6.0.0",
  26. "@npmcli/promise-spawn": "^8.0.0",
  27. "node-gyp": "^11.0.0",
  28. "proc-log": "^5.0.0",
  29. "which": "^5.0.0"
  30. },
  31. "files": [
  32. "bin/",
  33. "lib/"
  34. ],
  35. "main": "lib/run-script.js",
  36. "repository": {
  37. "type": "git",
  38. "url": "git+https://github.com/npm/run-script.git"
  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.24.1",
  46. "publish": "true"
  47. },
  48. "tap": {
  49. "nyc-arg": [
  50. "--exclude",
  51. "tap-snapshots/**"
  52. ]
  53. }
  54. }