UNPKG

2.84 kBJSONView Raw
1{
2 "name": "deep-equal",
3 "version": "2.0.5",
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 "prepublish": "safe-publish-latest",
23 "pretest": "npm run lint",
24 "lint": "eslint .",
25 "tests-only": "nyc tape 'test/**/*.js'",
26 "test": "npm run tests-only",
27 "posttest": "npx 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 "dependencies": {
32 "call-bind": "^1.0.0",
33 "es-get-iterator": "^1.1.1",
34 "get-intrinsic": "^1.0.1",
35 "is-arguments": "^1.0.4",
36 "is-date-object": "^1.0.2",
37 "is-regex": "^1.1.1",
38 "isarray": "^2.0.5",
39 "object-is": "^1.1.4",
40 "object-keys": "^1.1.1",
41 "object.assign": "^4.1.2",
42 "regexp.prototype.flags": "^1.3.0",
43 "side-channel": "^1.0.3",
44 "which-boxed-primitive": "^1.0.1",
45 "which-collection": "^1.0.1",
46 "which-typed-array": "^1.1.2"
47 },
48 "devDependencies": {
49 "@ljharb/eslint-config": "^17.3.0",
50 "aud": "^1.1.3",
51 "auto-changelog": "^2.2.1",
52 "eslint": "^7.14.0",
53 "has-symbols": "^1.0.1",
54 "has-typed-arrays": "^1.0.0",
55 "nyc": "^10.3.2",
56 "object.getownpropertydescriptors": "^2.1.1",
57 "safe-publish-latest": "^1.1.4",
58 "semver": "^6.3.0",
59 "tape": "^5.0.1"
60 },
61 "repository": {
62 "type": "git",
63 "url": "http://github.com/inspect-js/node-deep-equal.git"
64 },
65 "keywords": [
66 "equality",
67 "equal",
68 "compare"
69 ],
70 "author": {
71 "name": "James Halliday",
72 "email": "mail@substack.net",
73 "url": "http://substack.net"
74 },
75 "contributors": [
76 "James Halliday <mail@substack.net> (https://substack.net)",
77 "Jordan Harband <ljharb@gmail.com>"
78 ],
79 "funding": {
80 "url": "https://github.com/sponsors/ljharb"
81 },
82 "license": "MIT",
83 "testling": {
84 "files": "test/*.js",
85 "browsers": {
86 "ie": [
87 6,
88 7,
89 8,
90 9
91 ],
92 "ff": [
93 3.5,
94 10,
95 15
96 ],
97 "chrome": [
98 10,
99 22
100 ],
101 "safari": [
102 5.1
103 ],
104 "opera": [
105 12
106 ]
107 }
108 },
109 "auto-changelog": {
110 "output": "CHANGELOG.md",
111 "template": "keepachangelog",
112 "unreleased": false,
113 "commitLimit": false,
114 "backfillLimit": false,
115 "hideCredit": true
116 },
117 "greenkeeper": {
118 "ignore": [
119 "nyc",
120 "semver"
121 ]
122 },
123 "browser": {
124 "assert.js": false
125 }
126}