package.json 836 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "intersect",
  3. "description": "Find the intersection of two arrays",
  4. "version": "1.0.1",
  5. "repository": {
  6. "type": "git",
  7. "url": "git://github.com/juliangruber/intersect.git"
  8. },
  9. "homepage": "https://github.com/juliangruber/intersect",
  10. "main": "index.js",
  11. "scripts": {
  12. "test": "tape test/*.js"
  13. },
  14. "dependencies": {},
  15. "devDependencies": {
  16. "tape": "~2.3.0"
  17. },
  18. "keywords": [
  19. "intersect",
  20. "array"
  21. ],
  22. "author": {
  23. "name": "Julian Gruber",
  24. "email": "mail@juliangruber.com",
  25. "url": "http://juliangruber.com"
  26. },
  27. "license": "MIT",
  28. "testling": {
  29. "files": "test/*.js",
  30. "browsers": [
  31. "ie/6..latest",
  32. "chrome/20..latest",
  33. "firefox/10..latest",
  34. "safari/5.0.5..latest",
  35. "opera/11.0..latest",
  36. "iphone/6",
  37. "ipad/6"
  38. ]
  39. }
  40. }