package.json 961 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "repeat-element",
  3. "description": "Create an array by repeating the given value n times.",
  4. "version": "1.1.2",
  5. "homepage": "https://github.com/jonschlinkert/repeat-element",
  6. "author": {
  7. "name": "Jon Schlinkert",
  8. "url": "https://github.com/jonschlinkert"
  9. },
  10. "repository": {
  11. "type": "git",
  12. "url": "git://github.com/jonschlinkert/repeat-element.git"
  13. },
  14. "bugs": {
  15. "url": "https://github.com/jonschlinkert/repeat-element/issues"
  16. },
  17. "license": {
  18. "type": "MIT",
  19. "url": "https://github.com/jonschlinkert/repeat-element/blob/master/LICENSE"
  20. },
  21. "main": "index.js",
  22. "engines": {
  23. "node": ">=0.10.0"
  24. },
  25. "scripts": {
  26. "test": "mocha"
  27. },
  28. "files": [
  29. "index.js"
  30. ],
  31. "keywords": [
  32. "array",
  33. "element",
  34. "repeat",
  35. "string"
  36. ],
  37. "devDependencies": {
  38. "benchmarked": "^0.1.4",
  39. "chalk": "^1.0.0",
  40. "glob": "^5.0.5",
  41. "minimist": "^1.1.1",
  42. "mocha": "^2.2.4"
  43. }
  44. }