package.json
 1  {
 2    "name": "union-value",
 3    "description": "Set an array of unique values as the property of an object. Supports setting deeply nested properties using using object-paths/dot notation.",
 4    "version": "1.0.1",
 5    "homepage": "https://github.com/jonschlinkert/union-value",
 6    "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
 7    "repository": "jonschlinkert/union-value",
 8    "bugs": {
 9      "url": "https://github.com/jonschlinkert/union-value/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      "arr-union": "^3.1.0",
24      "get-value": "^2.0.6",
25      "is-extendable": "^0.1.1",
26      "set-value": "^2.0.1"
27    },
28    "devDependencies": {
29      "gulp-format-md": "^0.1.11",
30      "mocha": "^3.2.0",
31      "should": "^11.2.0"
32    },
33    "keywords": [
34      "array",
35      "dot",
36      "get",
37      "has",
38      "nested",
39      "notation",
40      "object",
41      "path",
42      "prop",
43      "property",
44      "set",
45      "union",
46      "value"
47    ],
48    "verb": {
49      "toc": false,
50      "layout": "default",
51      "tasks": [
52        "readme"
53      ],
54      "plugins": [
55        "gulp-format-md"
56      ],
57      "related": {
58        "list": [
59          "assign-value",
60          "get-value",
61          "has-value",
62          "set-value",
63          "unset-value"
64        ]
65      },
66      "lint": {
67        "reflinks": true
68      }
69    }
70  }