package.json 721 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "buffer-json",
  3. "version": "2.0.0",
  4. "description": "JSON.stringify & JSON.parse which can encode/decode buffers.",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "standard --fix && node test.js"
  8. },
  9. "repository": {
  10. "type": "git",
  11. "url": "git+https://github.com/jprichardson/buffer-json.git"
  12. },
  13. "keywords": [
  14. "JSON",
  15. "parse",
  16. "stringify",
  17. "buffer",
  18. "reviver",
  19. "replacer",
  20. "base64"
  21. ],
  22. "author": "JP Richardson",
  23. "license": "MIT",
  24. "bugs": {
  25. "url": "https://github.com/jprichardson/buffer-json/issues"
  26. },
  27. "homepage": "https://github.com/jprichardson/buffer-json#readme",
  28. "devDependencies": {
  29. "standard": "^12.0.1",
  30. "tape": "^4.10.1"
  31. }
  32. }