package.json 975 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "is-function",
  3. "version": "1.0.2",
  4. "description": "is that thing a function? Use this module to find out",
  5. "main": "index.js",
  6. "dependencies": {},
  7. "devDependencies": {
  8. "tape": "~2.3.2"
  9. },
  10. "scripts": {
  11. "test": "tape test.js"
  12. },
  13. "repository": {
  14. "type": "git",
  15. "url": "git://github.com/grncdr/js-is-function.git"
  16. },
  17. "homepage": "https://github.com/grncdr/js-is-function",
  18. "keywords": [
  19. "polyfill",
  20. "is-function",
  21. "ie6"
  22. ],
  23. "author": "Stephen Sugden <me@stephensugden.com>",
  24. "license": "MIT",
  25. "testling": {
  26. "files": "test.js",
  27. "browsers": [
  28. "iexplore/6.0..latest",
  29. "firefox/3.0..6.0",
  30. "firefox/15.0..latest",
  31. "firefox/nightly",
  32. "chrome/4.0..10.0",
  33. "chrome/20.0..latest",
  34. "chrome/canary",
  35. "opera/10.0..latest",
  36. "opera/next",
  37. "safari/4.0..latest",
  38. "ipad/6.0..latest",
  39. "iphone/6.0..latest",
  40. "android-browser/4.2"
  41. ]
  42. }
  43. }