package.json 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. {
  2. "name": "deep-equal",
  3. "version": "2.2.3",
  4. "description": "node's assert.deepEqual algorithm",
  5. "main": "index.js",
  6. "exports": {
  7. ".": [
  8. {
  9. "default": "./index.js"
  10. },
  11. "./index.js"
  12. ],
  13. "./package": "./package.json",
  14. "./package.json": "./package.json"
  15. },
  16. "directories": {
  17. "lib": ".",
  18. "example": "example",
  19. "test": "test"
  20. },
  21. "scripts": {
  22. "prepack": "npmignore --auto --commentLines=autogenerated",
  23. "prepublish": "not-in-publish || npm run prepublishOnly",
  24. "prepublishOnly": "safe-publish-latest",
  25. "pretest": "npm run lint",
  26. "lint": "eslint --ext=js,mjs .",
  27. "tests-only": "nyc tape 'test/**/*.js'",
  28. "test": "npm run tests-only",
  29. "posttest": "aud --production",
  30. "version": "auto-changelog && git add CHANGELOG.md",
  31. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  32. },
  33. "dependencies": {
  34. "array-buffer-byte-length": "^1.0.0",
  35. "call-bind": "^1.0.5",
  36. "es-get-iterator": "^1.1.3",
  37. "get-intrinsic": "^1.2.2",
  38. "is-arguments": "^1.1.1",
  39. "is-array-buffer": "^3.0.2",
  40. "is-date-object": "^1.0.5",
  41. "is-regex": "^1.1.4",
  42. "is-shared-array-buffer": "^1.0.2",
  43. "isarray": "^2.0.5",
  44. "object-is": "^1.1.5",
  45. "object-keys": "^1.1.1",
  46. "object.assign": "^4.1.4",
  47. "regexp.prototype.flags": "^1.5.1",
  48. "side-channel": "^1.0.4",
  49. "which-boxed-primitive": "^1.0.2",
  50. "which-collection": "^1.0.1",
  51. "which-typed-array": "^1.1.13"
  52. },
  53. "devDependencies": {
  54. "@ljharb/eslint-config": "^21.1.0",
  55. "aud": "^2.0.3",
  56. "auto-changelog": "^2.4.0",
  57. "available-typed-arrays": "^1.0.5",
  58. "eslint": "=8.8.0",
  59. "for-each": "^0.3.3",
  60. "has-proto": "^1.0.1",
  61. "has-symbols": "^1.0.3",
  62. "has-typed-arrays": "^1.0.1",
  63. "in-publish": "^2.0.1",
  64. "npmignore": "^0.3.0",
  65. "nyc": "^10.3.2",
  66. "object.getownpropertydescriptors": "^2.1.7",
  67. "safe-publish-latest": "^2.0.0",
  68. "semver": "^6.3.1",
  69. "tape": "^5.7.2"
  70. },
  71. "repository": {
  72. "type": "git",
  73. "url": "http://github.com/inspect-js/node-deep-equal.git"
  74. },
  75. "keywords": [
  76. "equality",
  77. "equal",
  78. "compare"
  79. ],
  80. "author": {
  81. "name": "James Halliday",
  82. "email": "mail@substack.net",
  83. "url": "http://substack.net"
  84. },
  85. "contributors": [
  86. "James Halliday <mail@substack.net> (https://substack.net)",
  87. "Jordan Harband <ljharb@gmail.com>"
  88. ],
  89. "funding": {
  90. "url": "https://github.com/sponsors/ljharb"
  91. },
  92. "license": "MIT",
  93. "engines": {
  94. "node": ">= 0.4"
  95. },
  96. "testling": {
  97. "files": "test/*.js",
  98. "browsers": {
  99. "ie": [
  100. 6,
  101. 7,
  102. 8,
  103. 9
  104. ],
  105. "ff": [
  106. 3.5,
  107. 10,
  108. 15
  109. ],
  110. "chrome": [
  111. 10,
  112. 22
  113. ],
  114. "safari": [
  115. 5.1
  116. ],
  117. "opera": [
  118. 12
  119. ]
  120. }
  121. },
  122. "auto-changelog": {
  123. "output": "CHANGELOG.md",
  124. "template": "keepachangelog",
  125. "unreleased": false,
  126. "commitLimit": false,
  127. "backfillLimit": false,
  128. "hideCredit": true
  129. },
  130. "browser": {
  131. "assert.js": false
  132. },
  133. "publishConfig": {
  134. "ignore": [
  135. ".github/workflows"
  136. ]
  137. }
  138. }