rsnext/packages/next-polyfill-nomodule/package.json
Tim Neutkens e52048daa7
Use core-js promise polyfill for nomodule browsers (#10985)
* Use core-js promise polyfill for nomodule browsers

Also updated to the core-js@3 features modules instead of importing the exact modules directly.

Fixes #10966

* Simplify reflect and regexp

* Add ie11 test for bad Promise

* Add test script for regexp and ie11

Co-authored-by: JJ Kasper <jj@jjsweb.site>
Co-authored-by: Joe Haddad <joe.haddad@zeit.co>
2020-03-11 16:21:49 -04:00

18 lines
552 B
JSON

{
"name": "@next/polyfill-nomodule",
"version": "9.3.1-canary.1",
"description": "A polyfill for non-dead, nomodule browsers.",
"main": "dist/polyfill-nomodule.js",
"license": "MIT",
"scripts": {
"prepublish": "microbundle src/index.js -f iife --no-sourcemap --external none",
"build": "microbundle watch src/index.js -f iife --no-sourcemap --external none"
},
"devDependencies": {
"core-js": "3.6.4",
"microbundle": "0.11.0",
"object-assign": "4.1.1",
"url-polyfill": "1.1.8",
"whatwg-fetch": "3.0.0"
}
}