package.json 971 B

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