package.json 1.1 KB

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