package.json 1.2 KB

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