00a541b2f559f97ea31487e6e3c1697ecc167fd11f531a18c7b166828142d4dcd014039cbfe6bdd40c22689e79a20a1d190145631bbb412c40e1e92345852c 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. {
  2. "name": "deep-equal",
  3. "version": "1.1.2",
  4. "description": "node's assert.deepEqual algorithm",
  5. "main": "index.js",
  6. "directories": {
  7. "lib": ".",
  8. "example": "example",
  9. "test": "test"
  10. },
  11. "scripts": {
  12. "prepack": "npmignore --auto --commentLines=autogenerated",
  13. "prepublish": "not-in-publish || npm run prepublishOnly",
  14. "prepublishOnly": "safe-publish-latest",
  15. "pretest": "npm run lint",
  16. "lint": "eslint --ext=js,mjs .",
  17. "tests-only": "nyc tape 'test/**/*.js'",
  18. "test": "npm run tests-only",
  19. "posttest": "aud --production",
  20. "version": "auto-changelog && git add CHANGELOG.md",
  21. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  22. },
  23. "dependencies": {
  24. "is-arguments": "^1.1.1",
  25. "is-date-object": "^1.0.5",
  26. "is-regex": "^1.1.4",
  27. "object-is": "^1.1.5",
  28. "object-keys": "^1.1.1",
  29. "regexp.prototype.flags": "^1.5.1"
  30. },
  31. "devDependencies": {
  32. "@ljharb/eslint-config": "^21.1.0",
  33. "aud": "^2.0.3",
  34. "auto-changelog": "^2.4.0",
  35. "define-data-property": "^1.1.1",
  36. "eslint": "=8.8.0",
  37. "has-typed-arrays": "^1.0.1",
  38. "in-publish": "^2.0.1",
  39. "npmignore": "^0.3.0",
  40. "nyc": "^10.3.2",
  41. "object.getownpropertydescriptors": "^2.1.7",
  42. "safe-publish-latest": "^2.0.0",
  43. "semver": "^6.3.1",
  44. "tape": "^5.7.2"
  45. },
  46. "repository": {
  47. "type": "git",
  48. "url": "http://github.com/inspect-js/node-deep-equal.git"
  49. },
  50. "keywords": [
  51. "equality",
  52. "equal",
  53. "compare"
  54. ],
  55. "author": {
  56. "name": "James Halliday",
  57. "email": "mail@substack.net",
  58. "url": "http://substack.net"
  59. },
  60. "funding": {
  61. "url": "https://github.com/sponsors/ljharb"
  62. },
  63. "license": "MIT",
  64. "engines": {
  65. "node": ">= 0.4"
  66. },
  67. "testling": {
  68. "files": "test/*.js",
  69. "browsers": {
  70. "ie": [
  71. 6,
  72. 7,
  73. 8,
  74. 9
  75. ],
  76. "ff": [
  77. 3.5,
  78. 10,
  79. 15
  80. ],
  81. "chrome": [
  82. 10,
  83. 22
  84. ],
  85. "safari": [
  86. 5.1
  87. ],
  88. "opera": [
  89. 12
  90. ]
  91. }
  92. },
  93. "auto-changelog": {
  94. "output": "CHANGELOG.md",
  95. "template": "keepachangelog",
  96. "unreleased": false,
  97. "commitLimit": false,
  98. "backfillLimit": false,
  99. "hideCredit": true
  100. },
  101. "browser": {
  102. "assert.js": false
  103. },
  104. "publishConfig": {
  105. "ignore": [
  106. ".github/workflows"
  107. ]
  108. }
  109. }