1 | {
|
2 | "name": "object-copy",
|
3 | "description": "Copy static properties, prototype properties, and descriptors from one object to another.",
|
4 | "version": "1.0.0",
|
5 | "homepage": "https://github.com/jonschlinkert/object-copy",
|
6 | "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
|
7 | "repository": "jonschlinkert/object-copy",
|
8 | "bugs": {
|
9 | "url": "https://github.com/jonschlinkert/object-copy/issues"
|
10 | },
|
11 | "license": "MIT",
|
12 | "files": [
|
13 | "index.js"
|
14 | ],
|
15 | "main": "index.js",
|
16 | "engines": {
|
17 | "node": ">=0.10.0"
|
18 | },
|
19 | "scripts": {
|
20 | "test": "mocha"
|
21 | },
|
22 | "dependencies": {
|
23 | "copy-descriptor": "^0.1.1",
|
24 | "define-property": "^1.0.0",
|
25 | "kind-of": "^5.0.0"
|
26 | },
|
27 | "devDependencies": {
|
28 | "gulp-format-md": "^0.1.12",
|
29 | "mocha": "^3.4.2"
|
30 | },
|
31 | "keywords": [
|
32 | "copy",
|
33 | "object"
|
34 | ],
|
35 | "verb": {
|
36 | "layout": "default",
|
37 | "plugins": [
|
38 | "gulp-format-md"
|
39 | ],
|
40 | "related": {
|
41 | "list": [
|
42 | "copy-descriptor",
|
43 | "define-property",
|
44 | "kind-of"
|
45 | ]
|
46 | },
|
47 | "reflinks": [
|
48 | "verb"
|
49 | ]
|
50 | }
|
51 | }
|