설명 없음

package.json 985B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "array-each",
  3. "description": "Loop over each item in an array and call the given function on every element.",
  4. "version": "1.0.1",
  5. "homepage": "https://github.com/jonschlinkert/array-each",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "repository": "jonschlinkert/array-each",
  8. "bugs": {
  9. "url": "https://github.com/jonschlinkert/array-each/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. "devDependencies": {
  23. "gulp-format-md": "^0.1.11",
  24. "mocha": "^3.2.0"
  25. },
  26. "keywords": [
  27. "array",
  28. "each"
  29. ],
  30. "verb": {
  31. "toc": false,
  32. "layout": "default",
  33. "tasks": [
  34. "readme"
  35. ],
  36. "plugins": [
  37. "gulp-format-md"
  38. ],
  39. "related": {
  40. "list": [
  41. "collection-map",
  42. "arr-filter",
  43. "arr-map"
  44. ]
  45. },
  46. "lint": {
  47. "reflinks": true
  48. }
  49. }
  50. }