package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "json-parse-better-errors",
  3. "version": "1.0.2",
  4. "description": "JSON.parse with context information on error",
  5. "main": "index.js",
  6. "files": [
  7. "*.js"
  8. ],
  9. "scripts": {
  10. "prerelease": "npm t",
  11. "postrelease": "npm publish && git push --follow-tags",
  12. "pretest": "standard",
  13. "release": "standard-version -s",
  14. "test": "tap -J --coverage test/*.js",
  15. "update-coc": "weallbehave -o . && git add CODE_OF_CONDUCT.md && git commit -m 'docs(coc): updated CODE_OF_CONDUCT.md'",
  16. "update-contrib": "weallcontribute -o . && git add CONTRIBUTING.md && git commit -m 'docs(contributing): updated CONTRIBUTING.md'"
  17. },
  18. "repository": "https://github.com/zkat/json-parse-better-errors",
  19. "keywords": [
  20. "JSON",
  21. "parser"
  22. ],
  23. "author": {
  24. "name": "Kat Marchán",
  25. "email": "kzm@zkat.tech",
  26. "twitter": "maybekatz"
  27. },
  28. "license": "MIT",
  29. "devDependencies": {
  30. "nyc": "^10.3.2",
  31. "standard": "^9.0.2",
  32. "standard-version": "^4.1.0",
  33. "tap": "^10.3.3",
  34. "weallbehave": "^1.2.0",
  35. "weallcontribute": "^1.0.8"
  36. },
  37. "config": {
  38. "nyc": {
  39. "exclude": [
  40. "node_modules/**",
  41. "test/**"
  42. ]
  43. }
  44. }
  45. }