package.json 993 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "repeat-element",
  3. "description": "Create an array by repeating the given value n times.",
  4. "version": "1.1.4",
  5. "homepage": "https://github.com/jonschlinkert/repeat-element",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "repository": "jonschlinkert/repeat-element",
  8. "bugs": {
  9. "url": "https://github.com/jonschlinkert/repeat-element/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. "benchmarked": "^2.0.0",
  24. "chalk": "^2.4.1",
  25. "glob": "^7.1.2",
  26. "gulp-format-md": "^1.0.0",
  27. "minimist": "^1.2.0",
  28. "mocha": "^3.5.3"
  29. },
  30. "keywords": [
  31. "array",
  32. "element",
  33. "repeat",
  34. "string"
  35. ],
  36. "verb": {
  37. "toc": false,
  38. "layout": "default",
  39. "tasks": [
  40. "readme"
  41. ],
  42. "plugins": [
  43. "gulp-format-md"
  44. ],
  45. "lint": {
  46. "reflinks": true
  47. }
  48. }
  49. }