package.json 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. {
  2. "name": "es5-shim",
  3. "version": "4.1.0",
  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": "npm run jscs && npm run eslint",
  36. "eslint": "eslint --reset tests/helpers/*.js tests/spec/*.js es5-shim.js es5-sham.js",
  37. "jscs": "jscs tests/helpers/*.js tests/spec/*.js es5-shim.js es5-sham.js"
  38. },
  39. "devDependencies": {
  40. "eslint": "~0.13.0",
  41. "jasmine-node": "~1.14.5",
  42. "jscs": "~1.10.0",
  43. "uglify-js": "~2.4.16"
  44. },
  45. "engines": {
  46. "node": ">=0.4.0"
  47. },
  48. "testling": {
  49. "browsers": [
  50. "iexplore/6.0..latest",
  51. "firefox/3.0..6.0",
  52. "firefox/18.0..latest",
  53. "firefox/nightly",
  54. "chrome/4.0..10.0",
  55. "chrome/25.0..latest",
  56. "chrome/canary",
  57. "opera/10.0..latest",
  58. "opera/next",
  59. "safari/4.0..latest",
  60. "ipad/6.0..latest",
  61. "iphone/6.0..latest",
  62. "android-browser/4.2"
  63. ]
  64. },
  65. "keywords": [
  66. "shim",
  67. "es5",
  68. "es5 shim",
  69. "javascript",
  70. "ecmascript",
  71. "polyfill"
  72. ]
  73. }