1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- {
- "name": "collection-map",
- "description": "Returns an array of mapped values from an array or object.",
- "version": "1.0.0",
- "homepage": "https://github.com/jonschlinkert/collection-map",
- "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
- "repository": "jonschlinkert/collection-map",
- "bugs": {
- "url": "https://github.com/jonschlinkert/collection-map/issues"
- },
- "license": "MIT",
- "files": [
- "index.js"
- ],
- "main": "index.js",
- "engines": {
- "node": ">=0.10.0"
- },
- "scripts": {
- "test": "mocha"
- },
- "dependencies": {
- "arr-map": "^2.0.2",
- "for-own": "^1.0.0",
- "make-iterator": "^1.0.0"
- },
- "devDependencies": {
- "gulp-format-md": "^0.1.11",
- "mocha": "^3.2.0"
- },
- "keywords": [
- "collection",
- "map"
- ],
- "verb": {
- "toc": false,
- "layout": "default",
- "tasks": [
- "readme"
- ],
- "plugins": [
- "gulp-format-md"
- ],
- "related": {
- "list": [
- "arr-flatten",
- "arr-map",
- "for-in",
- "for-own"
- ]
- },
- "lint": {
- "reflinks": true
- }
- }
- }
|