package.json 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. {
  2. "name": "es5-shim",
  3. "version": "4.0.5",
  4. "description": "ECMAScript 5 compatibility shims for legacy JavaScript engines",
  5. "homepage": "http://github.com/es-shims/es5-shim/",
  6. "contributors": [
  7. "Kris Kowal <kris@cixar.com> (http://github.com/kriskowal/)",
  8. "Sami Samhuri <sami.samhuri@gmail.com> (http://samhuri.net/)",
  9. "Florian Schäfer <florian.schaefer@gmail.com> (http://github.com/fschaefer)",
  10. "Irakli Gozalishvili <rfobic@gmail.com> (http://jeditoolkit.com)",
  11. "Kit Cambridge <kitcambridge@gmail.com> (http://kitcambridge.github.com)",
  12. "Jordan Harband <ljharb@gmail.com> (https://github.com/ljharb/)"
  13. ],
  14. "bugs": {
  15. "mail": "ljharb@gmail.com",
  16. "url": "http://github.com/es-shims/es5-shim/issues"
  17. },
  18. "licenses": [
  19. {
  20. "type": "MIT",
  21. "url": "http://github.com/es-shims/es5-shim/raw/master/LICENSE"
  22. }
  23. ],
  24. "main": "es5-shim.js",
  25. "repository": {
  26. "type": "git",
  27. "url": "http://github.com/es-shims/es5-shim.git"
  28. },
  29. "scripts": {
  30. "minify": "npm run minify-shim && npm run minify-sham",
  31. "minify-shim": "uglifyjs es5-shim.js --comments --source-map=es5-shim.map -m -b ascii_only=true,beautify=false > es5-shim.min.js",
  32. "minify-sham": "uglifyjs es5-sham.js --comments --source-map=es5-sham.map -m -b ascii_only=true,beautify=false > es5-sham.min.js",
  33. "test": "npm run lint && jasmine-node --matchall ./ tests/spec/",
  34. "test-native": "jasmine-node --matchall tests/spec/",
  35. "lint": "jscs tests/helpers/*.js tests/spec/*.js es5-shim.js es5-sham.js"
  36. },
  37. "devDependencies": {
  38. "jasmine-node": "~1.14.5",
  39. "jscs": "~1.8.0",
  40. "uglify-js": "~2.4.15"
  41. },
  42. "engines": {
  43. "node": ">=0.4.0"
  44. },
  45. "testling": {
  46. "browsers": [
  47. "iexplore/6.0..latest",
  48. "firefox/3.0..6.0",
  49. "firefox/18.0..latest",
  50. "firefox/nightly",
  51. "chrome/4.0..10.0",
  52. "chrome/25.0..latest",
  53. "chrome/canary",
  54. "opera/10.0..latest",
  55. "opera/next",
  56. "safari/4.0..latest",
  57. "ipad/6.0..latest",
  58. "iphone/6.0..latest",
  59. "android-browser/4.2"
  60. ]
  61. },
  62. "keywords": [
  63. "shim",
  64. "es5",
  65. "es5 shim",
  66. "javascript",
  67. "ecmascript",
  68. "polyfill"
  69. ]
  70. }