package.json 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. {
  2. "name": "json-stable-stringify",
  3. "version": "1.0.2",
  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.1"
  8. },
  9. "devDependencies": {
  10. "@ljharb/eslint-config": "^21.0.0",
  11. "aud": "^2.0.1",
  12. "auto-changelog": "^2.4.0",
  13. "eslint": "=8.8.0",
  14. "in-publish": "^2.0.1",
  15. "npmignore": "^0.3.0",
  16. "safe-publish-latest": "^2.0.0",
  17. "tape": "^5.6.1"
  18. },
  19. "scripts": {
  20. "prepack": "npmignore --auto --commentLines=autogenerated",
  21. "prepublishOnly": "safe-publish-latest",
  22. "prepublish": "not-in-publish || npm run prepublishOnly",
  23. "lint": "eslint --ext=js,mjs .",
  24. "pretest": "npm run lint",
  25. "tests-only": "tape 'test/**/*.js'",
  26. "test": "npm run tests-only",
  27. "posttest": "aud --production",
  28. "version": "auto-changelog && git add CHANGELOG.md",
  29. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  30. },
  31. "testling": {
  32. "files": "test/*.js",
  33. "browsers": [
  34. "ie/8..latest",
  35. "ff/5",
  36. "ff/latest",
  37. "chrome/15",
  38. "chrome/latest",
  39. "safari/latest",
  40. "opera/latest"
  41. ]
  42. },
  43. "repository": {
  44. "type": "git",
  45. "url": "git://github.com/ljharb/json-stable-stringify.git"
  46. },
  47. "homepage": "https://github.com/ljharb/json-stable-stringify",
  48. "keywords": [
  49. "json",
  50. "stringify",
  51. "deterministic",
  52. "hash",
  53. "sort",
  54. "stable"
  55. ],
  56. "author": {
  57. "name": "James Halliday",
  58. "email": "mail@substack.net",
  59. "url": "http://substack.net"
  60. },
  61. "funding": {
  62. "url": "https://github.com/sponsors/ljharb"
  63. },
  64. "license": "MIT",
  65. "auto-changelog": {
  66. "output": "CHANGELOG.md",
  67. "template": "keepachangelog",
  68. "unreleased": false,
  69. "commitLimit": false,
  70. "backfillLimit": false,
  71. "hideCredit": true
  72. },
  73. "publishConfig": {
  74. "ignore": [
  75. ".github/workflows"
  76. ]
  77. }
  78. }