package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "name": "@npmcli/run-script",
  3. "version": "6.0.2",
  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",
  10. "lint": "eslint \"**/*.js\"",
  11. "lintfix": "npm run lint -- --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": "^4.0.0",
  19. "@npmcli/template-oss": "4.15.1",
  20. "require-inject": "^1.4.4",
  21. "tap": "^16.0.1"
  22. },
  23. "dependencies": {
  24. "@npmcli/node-gyp": "^3.0.0",
  25. "@npmcli/promise-spawn": "^6.0.0",
  26. "node-gyp": "^9.0.0",
  27. "read-package-json-fast": "^3.0.0",
  28. "which": "^3.0.0"
  29. },
  30. "files": [
  31. "bin/",
  32. "lib/"
  33. ],
  34. "main": "lib/run-script.js",
  35. "repository": {
  36. "type": "git",
  37. "url": "https://github.com/npm/run-script.git"
  38. },
  39. "engines": {
  40. "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
  41. },
  42. "templateOSS": {
  43. "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
  44. "version": "4.15.1",
  45. "publish": "true"
  46. },
  47. "tap": {
  48. "nyc-arg": [
  49. "--exclude",
  50. "tap-snapshots/**"
  51. ]
  52. }
  53. }