package.json
 1  {
 2    "name": "extend-shallow",
 3    "description": "Extend an object with the properties of additional objects. node.js/javascript util.",
 4    "version": "3.0.2",
 5    "homepage": "https://github.com/jonschlinkert/extend-shallow",
 6    "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
 7    "contributors": [
 8      "Jon Schlinkert (http://twitter.com/jonschlinkert)",
 9      "Peter deHaan (http://about.me/peterdehaan)"
10    ],
11    "repository": "jonschlinkert/extend-shallow",
12    "bugs": {
13      "url": "https://github.com/jonschlinkert/extend-shallow/issues"
14    },
15    "license": "MIT",
16    "files": [
17      "index.js"
18    ],
19    "main": "index.js",
20    "engines": {
21      "node": ">=0.10.0"
22    },
23    "scripts": {
24      "test": "mocha"
25    },
26    "dependencies": {
27      "assign-symbols": "^1.0.0",
28      "is-extendable": "^1.0.1"
29    },
30    "devDependencies": {
31      "array-slice": "^1.0.0",
32      "benchmarked": "^2.0.0",
33      "for-own": "^1.0.0",
34      "gulp-format-md": "^1.0.0",
35      "is-plain-object": "^2.0.4",
36      "kind-of": "^6.0.1",
37      "minimist": "^1.2.0",
38      "mocha": "^3.5.3",
39      "object-assign": "^4.1.1"
40    },
41    "keywords": [
42      "assign",
43      "clone",
44      "extend",
45      "merge",
46      "obj",
47      "object",
48      "object-assign",
49      "object.assign",
50      "prop",
51      "properties",
52      "property",
53      "props",
54      "shallow",
55      "util",
56      "utility",
57      "utils",
58      "value"
59    ],
60    "verb": {
61      "toc": false,
62      "layout": "default",
63      "tasks": [
64        "readme"
65      ],
66      "related": {
67        "list": [
68          "extend-shallow",
69          "for-in",
70          "for-own",
71          "is-plain-object",
72          "isobject",
73          "kind-of"
74        ]
75      },
76      "plugins": [
77        "gulp-format-md"
78      ],
79      "lint": {
80        "reflinks": true
81      }
82    }
83  }