1 | {
|
2 | "name": "collection-visit",
|
3 | "description": "Visit a method over the items in an object, or map visit over the objects in an array.",
|
4 | "version": "1.0.0",
|
5 | "homepage": "https://github.com/jonschlinkert/collection-visit",
|
6 | "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
|
7 | "contributors": [
|
8 | "Brian Woodward <brian.woodward@gmail.com> (https://twitter.com/doowb)",
|
9 | "Jon Schlinkert <jon.schlinkert@sellside.com> (http://twitter.com/jonschlinkert)"
|
10 | ],
|
11 | "repository": "jonschlinkert/collection-visit",
|
12 | "bugs": {
|
13 | "url": "https://github.com/jonschlinkert/collection-visit/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 | "map-visit": "^1.0.0",
|
28 | "object-visit": "^1.0.0"
|
29 | },
|
30 | "devDependencies": {
|
31 | "clone-deep": "^0.2.4",
|
32 | "gulp": "^3.9.1",
|
33 | "gulp-eslint": "^3.0.1",
|
34 | "gulp-format-md": "^0.1.12",
|
35 | "gulp-istanbul": "^1.1.1",
|
36 | "gulp-mocha": "^3.0.0",
|
37 | "mocha": "^3.2.0"
|
38 | },
|
39 | "keywords": [
|
40 | "array",
|
41 | "arrays",
|
42 | "collection",
|
43 | "context",
|
44 | "function",
|
45 | "helper",
|
46 | "invoke",
|
47 | "key",
|
48 | "map",
|
49 | "method",
|
50 | "object",
|
51 | "objects",
|
52 | "value",
|
53 | "visit",
|
54 | "visitor"
|
55 | ],
|
56 | "verb": {
|
57 | "related": {
|
58 | "list": [
|
59 | "base-methods",
|
60 | "map-visit",
|
61 | "object-visit"
|
62 | ]
|
63 | },
|
64 | "toc": false,
|
65 | "layout": "default",
|
66 | "tasks": [
|
67 | "readme"
|
68 | ],
|
69 | "plugins": [
|
70 | "gulp-format-md"
|
71 | ],
|
72 | "lint": {
|
73 | "reflinks": true
|
74 | }
|
75 | }
|
76 | }
|