-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 921 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
{
"name": "deep-compact",
"version": "1.1.0",
"description": "Recursively compacts collection values (arrays and objects), removing empty values from your arrays & objects",
"main": "index.js",
"scripts": {
"test": "mocha --bail",
"browserify": "browserify -s deep-compact index.js > index.umd.js"
},
"bugs": {
"url": "https://github.com/IndigoUnited/node-deep-compact/issues/"
},
"repository": {
"type": "git",
"url": "git://github.com/IndigoUnited/node-deep-compact.git"
},
"keywords": [
"compact",
"deep",
"remove",
"trim",
"value",
"object",
"array"
],
"author": "IndigoUnited <[email protected]> (http://indigounited.com)",
"license": "MIT",
"devDependencies": {
"browserify": "^14.0.0",
"expect.js": "^0.3.1",
"mocha": "^3.0.2"
},
"dependencies": {
"deep-filter": "^1.0.0",
"is-plain-object": "^2.0.1"
}
}