package.json 796 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "name": "@babel/polyfill",
  3. "version": "7.12.1",
  4. "description": "Provides polyfills necessary for a full ES2015+ environment",
  5. "author": "Sebastian McKenzie <sebmck@gmail.com>",
  6. "homepage": "https://babeljs.io/",
  7. "license": "MIT",
  8. "publishConfig": {
  9. "access": "public"
  10. },
  11. "scripts": {
  12. "prepublishOnly": "cp dist/polyfill.min.js browser.js",
  13. "postpublish": "rm browser.js"
  14. },
  15. "repository": {
  16. "type": "git",
  17. "url": "https://github.com/babel/babel.git",
  18. "directory": "packages/babel-polyfill"
  19. },
  20. "main": "lib/index.js",
  21. "dependencies": {
  22. "core-js": "^2.6.5",
  23. "regenerator-runtime": "^0.13.4"
  24. },
  25. "devDependencies": {
  26. "browserify": "^16.5.2",
  27. "bundle-collapser": "1.3.0",
  28. "derequire": "2.1.1",
  29. "uglify-js": "3.7.2"
  30. }
  31. }