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