package.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. {
  2. "name": "for-each",
  3. "version": "0.3.3",
  4. "description": "A better forEach",
  5. "keywords": [],
  6. "author": "Raynos <raynos2@gmail.com>",
  7. "repository": "git://github.com/Raynos/for-each.git",
  8. "main": "index",
  9. "homepage": "https://github.com/Raynos/for-each",
  10. "contributors": [
  11. {
  12. "name": "Jake Verbaten"
  13. },
  14. {
  15. "name": "Jordan Harband",
  16. "url": "https://github.com/ljharb"
  17. }
  18. ],
  19. "bugs": {
  20. "url": "https://github.com/Raynos/for-each/issues",
  21. "email": "raynos2@gmail.com"
  22. },
  23. "dependencies": {
  24. "is-callable": "^1.1.3"
  25. },
  26. "devDependencies": {
  27. "@ljharb/eslint-config": "^12.2.1",
  28. "eslint": "^4.19.1",
  29. "nsp": "^3.2.1",
  30. "tape": "^4.9.0"
  31. },
  32. "license": "MIT",
  33. "licenses": [
  34. {
  35. "type": "MIT",
  36. "url": "http://github.com/Raynos/for-each/raw/master/LICENSE"
  37. }
  38. ],
  39. "scripts": {
  40. "pretest": "npm run lint",
  41. "test": "npm run tests-only",
  42. "tests-only": "node test/test",
  43. "posttest": "npm run security",
  44. "lint": "eslint *.js test/*.js",
  45. "security": "nsp check"
  46. },
  47. "testling": {
  48. "files": "test/test.js",
  49. "browsers": [
  50. "iexplore/6.0..latest",
  51. "firefox/3.0..6.0",
  52. "firefox/15.0..latest",
  53. "firefox/nightly",
  54. "chrome/4.0..10.0",
  55. "chrome/20.0..latest",
  56. "chrome/canary",
  57. "opera/10.0..latest",
  58. "opera/next",
  59. "safari/4.0..latest",
  60. "ipad/6.0..latest",
  61. "iphone/6.0..latest",
  62. "android-browser/4.2"
  63. ]
  64. }
  65. }