-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
47 lines (47 loc) · 985 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
44
45
46
47
{
"name": "defaults-deep",
"description": "Like `extend` but recursively copies only the missing properties/values to the target object.",
"version": "0.2.4",
"homepage": "https://github.com/jonschlinkert/defaults-deep",
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
"repository": "jonschlinkert/defaults-deep",
"bugs": {
"url": "https://github.com/jonschlinkert/defaults-deep/issues"
},
"license": "MIT",
"files": [
"index.js"
],
"main": "index.js",
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "mocha"
},
"dependencies": {
"for-own": "^0.1.3",
"is-extendable": "^0.1.1",
"lazy-cache": "^0.2.3"
},
"devDependencies": {
"mocha": "^3.5.3",
"should": "^13.2.1"
},
"keywords": [
"copy",
"default",
"defaults",
"extend",
"merge",
"object",
"properties",
"property",
"value",
"values",
"javascript",
"js",
"util",
"utils"
]
}