-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.5 KB
/
package.json
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
{
"name": "nested-equal",
"version": "1.0.1",
"description": "A tiny (~200B) and fast nested/deep equality utility",
"scripts": {
"build": "microbundle",
"dev": "microbundle watch",
"test": "yarn jest"
},
"main": "dist/index.js",
"module": "dist/index.module.js",
"unpkg": "dist/index.umd.js",
"browser": "dist/index.modern.js",
"exports": {
".": {
"browser": "./dist/index.modern.js",
"import": "./dist/index.js",
"require": "./dist/index.js"
},
"./package.json": "./package.json"
},
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/alizeait/nested-equal.git"
},
"files": [
"dist"
],
"keywords": [
"object",
"array",
"nested",
"deep",
"deep-equal",
"comparison",
"equality",
"fast",
"tiny",
"small",
"traversal"
],
"author": {
"name": "Ali Zeaiter",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/alizeait/nested-equal/issues"
},
"homepage": "https://github.com/alizeait/nested-equal#readme",
"devDependencies": {
"@types/jest": "^27.4.0",
"benchmark": "^2.1.4",
"codecov": "^3.8.3",
"deep-equal": "^2.0.5",
"dequal": "2.0.2",
"fast-deep-equal": "^3.1.3",
"jest": "^27.5.1",
"lodash.isequal": "^4.5.0",
"microbundle": "^0.14.2",
"nano-equal": "^2.0.2",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5",
"yarn-audit-fix": "^9.0.10"
}
}