package.json 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. {
  2. "name": "es5-shim",
  3. "version": "4.6.7",
  4. "description": "ECMAScript 5 compatibility shims for legacy JavaScript engines",
  5. "homepage": "https://github.com/es-shims/es5-shim/",
  6. "contributors": [
  7. "Kris Kowal <kris@cixar.com> (https://github.com/kriskowal/)",
  8. "Sami Samhuri <sami.samhuri@gmail.com> (https://samhuri.net/)",
  9. "Florian Schäfer <florian.schaefer@gmail.com> (https://github.com/fschaefer)",
  10. "Irakli Gozalishvili <rfobic@gmail.com> (https://gozala.io)",
  11. "Kit Cambridge <kitcambridge@gmail.com> (https://github.com/kitcambridge)",
  12. "Jordan Harband <ljharb@gmail.com> (https://github.com/ljharb/)"
  13. ],
  14. "bugs": {
  15. "mail": "ljharb@gmail.com",
  16. "url": "https://github.com/es-shims/es5-shim/issues"
  17. },
  18. "license": "MIT",
  19. "main": "es5-shim.js",
  20. "repository": {
  21. "type": "git",
  22. "url": "https://github.com/es-shims/es5-shim.git"
  23. },
  24. "scripts": {
  25. "prepublish": "not-in-publish || npm run prepublishOnly",
  26. "prepublishOnly": "safe-publish-latest && npm run minify",
  27. "minify": "npm run --silent minify-shim && npm run --silent minify-sham",
  28. "minify-shim": "uglifyjs es5-shim.js --support-ie8 --keep-fnames --comments --source-map=es5-shim.map -m -b ascii_only=true,beautify=false | sed 's/0xde0b6b3a7640080/1000000000000000128/' > es5-shim.min.js",
  29. "minify-sham": "uglifyjs es5-sham.js --support-ie8 --keep-fnames --comments --source-map=es5-sham.map -m -b ascii_only=true,beautify=false > es5-sham.min.js",
  30. "pretest": "npm run --silent lint",
  31. "test": "npm run tests-only",
  32. "posttest": "aud --production",
  33. "tests-only": "nyc jasmine-node --matchall es5-sh*m.js tests/helpers/ tests/spec/",
  34. "tests-native": "jasmine-node --matchall tests/helpers/ tests/spec/",
  35. "lint": "eslint ."
  36. },
  37. "devDependencies": {
  38. "@ljharb/eslint-config": "^21.0.0",
  39. "aud": "^2.0.0",
  40. "eslint": "=8.8.0",
  41. "in-publish": "^2.0.1",
  42. "jasmine-node": "^1.16.2",
  43. "nyc": "^10.3.2",
  44. "safe-publish-latest": "^2.0.0",
  45. "uglify-js": "2.7.3"
  46. },
  47. "engines": {
  48. "node": ">=0.4.0"
  49. },
  50. "testling": {
  51. "browsers": [
  52. "iexplore/6.0..latest",
  53. "firefox/3.0..6.0",
  54. "firefox/18.0..latest",
  55. "firefox/nightly",
  56. "chrome/4.0..10.0",
  57. "chrome/25.0..latest",
  58. "chrome/canary",
  59. "opera/10.0..latest",
  60. "opera/next",
  61. "safari/4.0..latest",
  62. "ipad/6.0..latest",
  63. "iphone/6.0..latest",
  64. "android-browser/4.2"
  65. ]
  66. },
  67. "keywords": [
  68. "shim",
  69. "es5",
  70. "es5 shim",
  71. "javascript",
  72. "ecmascript",
  73. "polyfill"
  74. ],
  75. "greenkeeper": {
  76. "ignore": [
  77. "uglify-js"
  78. ]
  79. }
  80. }