-
-
Notifications
You must be signed in to change notification settings - Fork 58
/
package.json
45 lines (45 loc) · 1.31 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
{
"name": "better-dateinput-polyfill",
"description": "input[type=date] polyfill",
"version": "4.0.0-beta.2",
"author": "Maksim Chemerisuk",
"license": "MIT",
"homepage": "https://github.com/chemerisuk/better-dateinput-polyfill",
"repository": {
"type": "git",
"url": "https://github.com/chemerisuk/better-dateinput-polyfill"
},
"keywords": [
"web-components"
],
"devDependencies": {
"@babel/core": "^7.13.15",
"@babel/preset-env": "^7.13.15",
"@rollup/plugin-babel": "^5.3.0",
"babel-plugin-html-tag": "^2.0.1",
"gh-pages": "^3.1.0",
"jasmine-core": "^3.7.1",
"karma": "^6.3.2",
"karma-chrome-launcher": "^3.1.0",
"karma-jasmine": "^4.0.1",
"postcss": "^8.2.9",
"postcss-font-family-system-ui": "^5.0.0",
"postcss-preset-env": "^6.7.0",
"rollup": "^2.44.0",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-terser": "^7.0.2"
},
"scripts": {
"build": "rollup --config",
"watch": "rollup --config --watch --silent | karma start",
"test": "karma start --single-run",
"version": "npm run build -- --configDist && git add -A dist",
"postversion": "git push && git push --tags",
"publish": "gh-pages -s '{index.html,README.md,build/*}' -d ."
},
"browserslist": [
"ChromeAndroid 70",
"iOS 10",
"IE 10"
]
}