package.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "name": "foreach",
  3. "description": "foreach component + npm package",
  4. "version": "2.0.5",
  5. "author": "Manuel Stofer <manuel@takimata.ch>",
  6. "contributors": [
  7. {
  8. "name": "Manuel Stofer"
  9. },
  10. {
  11. "name": "Jordan Harband",
  12. "url": "https://github.com/ljharb"
  13. }
  14. ],
  15. "license": "MIT",
  16. "main": "index.js",
  17. "scripts": {
  18. "test": "node test.js",
  19. "coverage": "covert test.js",
  20. "coverage-quiet": "covert --quiet test.js"
  21. },
  22. "repository": {
  23. "type": "git",
  24. "url": "git://github.com/manuelstofer/foreach"
  25. },
  26. "keywords": [
  27. "shim",
  28. "Array.prototype.forEach",
  29. "forEach",
  30. "Array#forEach",
  31. "each"
  32. ],
  33. "dependencies": {},
  34. "devDependencies": {
  35. "tape": "*",
  36. "covert": "*"
  37. },
  38. "testling": {
  39. "files": "test.js",
  40. "browsers": [
  41. "iexplore/6.0..latest",
  42. "firefox/3.0",
  43. "firefox/15.0..latest",
  44. "firefox/nightly",
  45. "chrome/4.0",
  46. "chrome/22.0..latest",
  47. "chrome/canary",
  48. "opera/10.0..latest",
  49. "opera/next",
  50. "safari/5.0.5..latest",
  51. "ipad/6.0..latest",
  52. "iphone/6.0..latest",
  53. "android-browser/4.2"
  54. ]
  55. }
  56. }