selectlist-polyfill
Version:
Polyfill for the selectlist element
53 lines (52 loc) • 1.26 kB
JSON
{
"name": "selectlist-polyfill",
"version": "0.3.0",
"description": "Polyfill for the selectlist element",
"type": "module",
"main": "dist/polyfill.js",
"files": [
"src",
"dist"
],
"repository": "luwes/selectlist-polyfill",
"author": "Wesley Luyten <me@wesleyluyten.com> (https://wesleyluyten.com)",
"license": "MIT",
"homepage": "https://github.com/luwes/selectlist-polyfill#readme",
"bugs": {
"url": "https://github.com/luwes/selectlist-polyfill/issues"
},
"scripts": {
"lint": "npx eslint src/*.js",
"test": "wet run",
"dev": "wet serve --redirect :examples/ & npm run build -- --watch",
"build": "esbuild src/polyfill.js --outdir=dist --bundle --minify-syntax --tree-shaking=true",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"esbuild": "^0.18.4",
"wet-run": "^0.2.0"
},
"eslintConfig": {
"root": true,
"globals": {
"globalThis": "writable"
},
"env": {
"browser": true,
"es6": true
},
"extends": [
"eslint:recommended"
],
"parserOptions": {
"ecmaVersion": 2022,
"sourceType": "module"
}
},
"keywords": [
"selectlist",
"polyfill",
"web component",
"custom element"
]
}