package.json 855 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "strip-json-comments",
  3. "version": "3.1.1",
  4. "description": "Strip comments from JSON. Lets you use comments in your JSON files!",
  5. "license": "MIT",
  6. "repository": "sindresorhus/strip-json-comments",
  7. "funding": "https://github.com/sponsors/sindresorhus",
  8. "author": {
  9. "name": "Sindre Sorhus",
  10. "email": "sindresorhus@gmail.com",
  11. "url": "https://sindresorhus.com"
  12. },
  13. "engines": {
  14. "node": ">=8"
  15. },
  16. "scripts": {
  17. "test": "xo && ava && tsd",
  18. "bench": "matcha benchmark.js"
  19. },
  20. "files": [
  21. "index.js",
  22. "index.d.ts"
  23. ],
  24. "keywords": [
  25. "json",
  26. "strip",
  27. "comments",
  28. "remove",
  29. "delete",
  30. "trim",
  31. "multiline",
  32. "parse",
  33. "config",
  34. "configuration",
  35. "settings",
  36. "util",
  37. "env",
  38. "environment",
  39. "jsonc"
  40. ],
  41. "devDependencies": {
  42. "ava": "^1.4.1",
  43. "matcha": "^0.7.0",
  44. "tsd": "^0.7.2",
  45. "xo": "^0.24.0"
  46. }
  47. }