package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "raf",
  3. "version": "3.4.1",
  4. "description": "requestAnimationFrame polyfill for node and the browser",
  5. "main": "index.js",
  6. "scripts": {
  7. "testling": "browserify test.js | testling",
  8. "test": "node test.js"
  9. },
  10. "repository": {
  11. "type": "git",
  12. "url": "git://github.com/chrisdickinson/raf.git"
  13. },
  14. "keywords": [
  15. "requestAnimationFrame",
  16. "polyfill"
  17. ],
  18. "author": "Chris Dickinson <chris@neversaw.us>",
  19. "contributors": [
  20. "Christian Maughan Tegnér <christian.tegner@gmail.com>"
  21. ],
  22. "license": "MIT",
  23. "devDependencies": {
  24. "testling": "~1.6.1",
  25. "browserify": "~4.1.2",
  26. "tape": "^4.0.0"
  27. },
  28. "dependencies": {
  29. "performance-now": "^2.1.0"
  30. },
  31. "testling": {
  32. "files": "test.js",
  33. "browsers": [
  34. "iexplore/6.0..latest",
  35. "firefox/3.0..6.0",
  36. "firefox/15.0..latest",
  37. "firefox/nightly",
  38. "chrome/4.0..10.0",
  39. "chrome/20.0..latest",
  40. "chrome/canary",
  41. "opera/10.0..latest",
  42. "opera/next",
  43. "safari/4.0..latest",
  44. "ipad/6.0..latest",
  45. "iphone/6.0..latest"
  46. ]
  47. }
  48. }