package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "name": "object.map",
  3. "description": "Similar to map for arrays, this creates a new object by calling the callback on each property of the original object.",
  4. "version": "1.0.1",
  5. "homepage": "https://github.com/jonschlinkert/object.map",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "contributors": [
  8. "Blaine Bublitz (https://twitter.com/BlaineBublitz)",
  9. "Brian Woodward (https://twitter.com/doowb)",
  10. "Jon Schlinkert (http://twitter.com/jonschlinkert)"
  11. ],
  12. "repository": "jonschlinkert/object.map",
  13. "bugs": {
  14. "url": "https://github.com/jonschlinkert/object.map/issues"
  15. },
  16. "license": "MIT",
  17. "files": [
  18. "index.js"
  19. ],
  20. "main": "index.js",
  21. "engines": {
  22. "node": ">=0.10.0"
  23. },
  24. "scripts": {
  25. "test": "mocha"
  26. },
  27. "dependencies": {
  28. "for-own": "^1.0.0",
  29. "make-iterator": "^1.0.0"
  30. },
  31. "devDependencies": {
  32. "gulp-format-md": "^0.1.11",
  33. "mocha": "^3.2.0"
  34. },
  35. "keywords": [
  36. "map",
  37. "object"
  38. ],
  39. "verb": {
  40. "toc": false,
  41. "layout": "default",
  42. "tasks": [
  43. "readme"
  44. ],
  45. "plugins": [
  46. "gulp-format-md"
  47. ],
  48. "related": {
  49. "list": [
  50. "arr-map",
  51. "array-each",
  52. "collection-map"
  53. ]
  54. },
  55. "lint": {
  56. "reflinks": true
  57. }
  58. }
  59. }