umd-fetcher
Version:
A minimalist UMD module loader.
38 lines (37 loc) • 792 B
JSON
{
"author": "Alexandre Masy <hello@alexandremasy.com",
"description": "A minimalist UMD module loader.",
"devDependencies": {
"rollup": "^2.21.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-terser": "^6.1.0"
},
"files": [
"dist"
],
"homepage": "https://github.com/alexandremasy/umd-fetcher",
"keywords": [
"umd",
"umd loader"
],
"license": "MIT",
"main": "dist/umd-fetcher.esm.min.js",
"module": "dist/umd-fetcher.esm.min.js",
"name": "umd-fetcher",
"nodemonConfig": {
"ignore": [
".git",
"node_modules"
],
"watch": [
"src"
],
"ext": "js"
},
"scripts": {
"bundle": "rollup -c",
"start": "nodemon --exec \"yarn bundle\"",
"prepublish": "yarn bundle"
},
"version": "1.0.1"
}