package.json 1.1 KB

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