-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1018 Bytes
/
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
{
"name": "js-deep-equals",
"version": "2.0.4",
"description": "get equality of unsorted and sorted arrays with nested arrays and nested objects support",
"main": "index.js",
"scripts": {
"test": "nyc ava ./test",
"bench": "node benchmarks",
"coverage": "nyc npm test ./test && nyc report --reporter=text-lcov | ./node_modules/coveralls/bin/coveralls.js"
},
"author": "Joel Wasserman",
"license": "MIT",
"devDependencies": {
"ava": "^0.25.0",
"coveralls": "^3.0.1",
"lodash.isequal": "^4.5.0",
"nyc": "^11.7.3"
},
"keywords": [
"array",
"object",
"object deep equal",
"deep equals",
"array deep equals",
"array equals",
"array comparison",
"equals",
"unsorted array equals",
"sorted array equals",
"objects",
"unsorted"
],
"directories": {
"test": "test"
},
"dependencies": {
"murmurhash": "0.0.2"
},
"repository": {
"type": "git",
"url": "git@github-personal:joelwass/deep-equals.git"
}
}