38 lines
946 B
JSON
38 lines
946 B
JSON
|
{
|
||
|
"name": "dynamic-import-polyfill",
|
||
|
"version": "0.1.1",
|
||
|
"description": "A polyfill for the native import() in the browser",
|
||
|
"source": "src/index.js",
|
||
|
"main": "dist/dynamic-import-polyfill.umd.js",
|
||
|
"module": "dist/dynamic-import-polyfill.mjs",
|
||
|
"license": "MIT",
|
||
|
"scripts": {
|
||
|
"build": "rm -rf dist && rollup -c",
|
||
|
"lint": "eslint '*.+(js|mjs)'"
|
||
|
},
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "https://github.com/GoogleChromeLabs/dynamic-import-polyfill.git"
|
||
|
},
|
||
|
"bugs": {
|
||
|
"url": "https://github.com/GoogleChromeLabs/dynamic-import-polyfill/issues"
|
||
|
},
|
||
|
"author": {
|
||
|
"name": "Philip Walton",
|
||
|
"email": "philip@philipwalton.com",
|
||
|
"url": "http://philipwalton.com"
|
||
|
},
|
||
|
"keywords": [
|
||
|
"import",
|
||
|
"dynamic",
|
||
|
"module",
|
||
|
"polyfill"
|
||
|
],
|
||
|
"devDependencies": {
|
||
|
"eslint": "^6.2.2",
|
||
|
"eslint-config-google": "^0.13.0",
|
||
|
"rollup": "^1.20.2",
|
||
|
"rollup-plugin-terser": "^5.1.1"
|
||
|
}
|
||
|
}
|