package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "npm-normalize-package-bin",
  3. "version": "3.0.1",
  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": "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": "eslint \"**/*.js\"",
  16. "postlint": "template-oss-check",
  17. "template-oss-apply": "template-oss-apply --force",
  18. "lintfix": "npm run lint -- --fix",
  19. "posttest": "npm run lint"
  20. },
  21. "devDependencies": {
  22. "@npmcli/eslint-config": "^4.0.0",
  23. "@npmcli/template-oss": "4.14.1",
  24. "tap": "^16.3.0"
  25. },
  26. "files": [
  27. "bin/",
  28. "lib/"
  29. ],
  30. "engines": {
  31. "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
  32. },
  33. "templateOSS": {
  34. "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
  35. "version": "4.14.1",
  36. "publish": "true"
  37. },
  38. "tap": {
  39. "nyc-arg": [
  40. "--exclude",
  41. "tap-snapshots/**"
  42. ]
  43. }
  44. }