package.json 1.2 KB

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