-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
52 lines (52 loc) · 1.23 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"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 <[email protected]> (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"
]
}