package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "name": "collection-map",
  3. "description": "Returns an array of mapped values from an array or object.",
  4. "version": "1.0.0",
  5. "homepage": "https://github.com/jonschlinkert/collection-map",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "repository": "jonschlinkert/collection-map",
  8. "bugs": {
  9. "url": "https://github.com/jonschlinkert/collection-map/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-map": "^2.0.2",
  24. "for-own": "^1.0.0",
  25. "make-iterator": "^1.0.0"
  26. },
  27. "devDependencies": {
  28. "gulp-format-md": "^0.1.11",
  29. "mocha": "^3.2.0"
  30. },
  31. "keywords": [
  32. "collection",
  33. "map"
  34. ],
  35. "verb": {
  36. "toc": false,
  37. "layout": "default",
  38. "tasks": [
  39. "readme"
  40. ],
  41. "plugins": [
  42. "gulp-format-md"
  43. ],
  44. "related": {
  45. "list": [
  46. "arr-flatten",
  47. "arr-map",
  48. "for-in",
  49. "for-own"
  50. ]
  51. },
  52. "lint": {
  53. "reflinks": true
  54. }
  55. }
  56. }