package.json 991 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "json-stable-stringify-without-jsonify",
  3. "version": "1.0.1",
  4. "description": "deterministic JSON.stringify() with custom sorting to get deterministic hashes from stringified results, with no public domain dependencies",
  5. "main": "index.js",
  6. "dependencies": {
  7. },
  8. "devDependencies": {
  9. "tape": "~1.0.4"
  10. },
  11. "scripts": {
  12. "test": "tape test/*.js"
  13. },
  14. "testling": {
  15. "files": "test/*.js",
  16. "browsers": [
  17. "ie/8..latest",
  18. "ff/5", "ff/latest",
  19. "chrome/15", "chrome/latest",
  20. "safari/latest",
  21. "opera/latest"
  22. ]
  23. },
  24. "repository": {
  25. "type": "git",
  26. "url": "git://github.com/samn/json-stable-stringify.git"
  27. },
  28. "homepage": "https://github.com/samn/json-stable-stringify",
  29. "keywords": [
  30. "json",
  31. "stringify",
  32. "deterministic",
  33. "hash",
  34. "sort",
  35. "stable"
  36. ],
  37. "author": {
  38. "name": "James Halliday",
  39. "email": "mail@substack.net",
  40. "url": "http://substack.net"
  41. },
  42. "license": "MIT"
  43. }