package.json 955 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "object-keys",
  3. "version": "0.4.0",
  4. "author": "Jordan Harband",
  5. "description": "An Object.keys replacement, in case Object.keys is not available. From https://github.com/kriskowal/es5-shim",
  6. "license": "MIT",
  7. "main": "index.js",
  8. "scripts": {
  9. "test": "node test/index.js"
  10. },
  11. "repository": {
  12. "type": "git",
  13. "url": "git://github.com/ljharb/object-keys.git"
  14. },
  15. "keywords": [
  16. "Object.keys",
  17. "keys",
  18. "ES5",
  19. "shim"
  20. ],
  21. "dependencies": {
  22. },
  23. "devDependencies": {
  24. "foreach": "~2.0.3",
  25. "is": "~0.2.6",
  26. "tape": "~1.0.4",
  27. "indexof": "~0.0.1"
  28. },
  29. "testling": {
  30. "files": "test/index.js",
  31. "browsers": [
  32. "iexplore/6.0..latest",
  33. "firefox/3.0..6.0",
  34. "firefox/15.0..latest",
  35. "firefox/nightly",
  36. "chrome/4.0..10.0",
  37. "chrome/20.0..latest",
  38. "chrome/canary",
  39. "opera/10.0..latest",
  40. "opera/next",
  41. "safari/4.0..latest",
  42. "ipad/6.0..latest",
  43. "iphone/6.0..latest",
  44. "android-browser/4.2"
  45. ]
  46. }
  47. }