package.json 751 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "parse-json",
  3. "version": "4.0.0",
  4. "description": "Parse JSON with more helpful errors",
  5. "license": "MIT",
  6. "repository": "sindresorhus/parse-json",
  7. "author": {
  8. "name": "Sindre Sorhus",
  9. "email": "sindresorhus@gmail.com",
  10. "url": "sindresorhus.com"
  11. },
  12. "engines": {
  13. "node": ">=4"
  14. },
  15. "scripts": {
  16. "test": "xo && nyc ava"
  17. },
  18. "files": [
  19. "index.js",
  20. "vendor"
  21. ],
  22. "keywords": [
  23. "parse",
  24. "json",
  25. "graceful",
  26. "error",
  27. "message",
  28. "humanize",
  29. "friendly",
  30. "helpful",
  31. "string",
  32. "str"
  33. ],
  34. "dependencies": {
  35. "error-ex": "^1.3.1",
  36. "json-parse-better-errors": "^1.0.1"
  37. },
  38. "devDependencies": {
  39. "ava": "*",
  40. "nyc": "^11.2.1",
  41. "xo": "*"
  42. }
  43. }