-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
41 lines (41 loc) · 980 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
{
"name": "nested-objects-util",
"version": "1.1.2",
"description": "A module to filter and diff complex nested objects having circular references.",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/bonnevoyager/nested-objects-util"
},
"keywords": [
"object",
"obj",
"json",
"deep-keys",
"nested-keys",
"nested-object",
"flatten-object",
"find-key",
"find-value",
"filter-value",
"circular-references",
"objects-diff",
"objects-filter",
"objects-comparison"
],
"author": "Krzysztof Gutkowski",
"license": "MIT",
"bugs": {
"url": "https://github.com/bonnevoyager/nested-objects-util/issues"
},
"homepage": "https://github.com/bonnevoyager/nested-objects-util",
"devDependencies": {
"assert": "^2.0.0",
"minify": "^6.0.0",
"mocha": "^8.2.1"
},
"scripts": {
"test": "mocha *.spec.js",
"minify": "minify index.js > index.min.js"
}
}