-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 3.51 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "@scoped-elements/material-web",
"version": "0.0.17",
"description": "Material Web Components packaged in scoped custom elements registries using @open-wc/scoped-elements",
"author": "guillem.cordoba@gmail.com",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.js",
"typings": "dist/index.d.ts",
"type": "module",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"start": "npm run build && concurrently --kill-others --names tsc,web-dev-server \"npm run build-watch\" \"web-dev-server --config demo/web-dev-server.config.mjs\"",
"build": "npm run clean && rollup -c rollup.config.js && cp mwc-card.d.ts dist",
"build-watch": "rollup -c rollup.config.js -w",
"clean": "rimraf dist",
"lint": "eslint --ext .ts,.html . --ignore-path .gitignore",
"format": "eslint --ext .ts,.html . --fix --ignore-path .gitignore",
"test": "tsc && web-test-runner --coverage",
"test:watch": "web-test-runner --watch",
"publish-to-branch": "npm run before-publish && gh-pages -d ./dist -b build"
},
"dependencies": {
"@material/mwc-button": "^0.25.3",
"@material/mwc-checkbox": "^0.25.3",
"@material/mwc-circular-progress": "^0.25.3",
"@material/mwc-circular-progress-four-color": "^0.25.3",
"@material/mwc-dialog": "^0.25.3",
"@material/mwc-drawer": "^0.25.3",
"@material/mwc-fab": "^0.25.3",
"@material/mwc-formfield": "^0.25.3",
"@material/mwc-icon": "^0.25.3",
"@material/mwc-icon-button": "^0.25.3",
"@material/mwc-icon-button-toggle": "^0.25.3",
"@material/mwc-linear-progress": "^0.25.3",
"@material/mwc-list": "^0.25.3",
"@material/mwc-menu": "^0.25.3",
"@material/mwc-notched-outline": "^0.25.3",
"@material/mwc-radio": "^0.25.3",
"@material/mwc-ripple": "^0.25.3",
"@material/mwc-select": "^0.25.3",
"@material/mwc-slider": "^0.25.3",
"@material/mwc-snackbar": "^0.25.3",
"@material/mwc-switch": "^0.25.3",
"@material/mwc-tab": "^0.25.3",
"@material/mwc-tab-bar": "^0.25.3",
"@material/mwc-tab-indicator": "^0.25.3",
"@material/mwc-tab-scroller": "^0.25.3",
"@material/mwc-textarea": "^0.25.3",
"@material/mwc-textfield": "^0.25.3",
"@material/mwc-top-app-bar": "^0.25.3",
"@material/mwc-top-app-bar-fixed": "^0.25.3",
"@open-wc/scoped-elements": "^2.0.1",
"@ui5/webcomponents": "^1.0.0-rc.15",
"lit": "^2.0.2"
},
"devDependencies": {
"@open-wc/eslint-config": "^4.2.0",
"@open-wc/testing": "^2.0.0",
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-replace": "^2.3.4",
"@rollup/plugin-typescript": "^8.1.0",
"@types/node": "13.11.1",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"@web/dev-server": "0.0.19",
"@web/dev-server-rollup": "^0.2.12",
"@web/test-runner": "^0.7.41",
"concurrently": "^5.1.0",
"eslint": "^7.20.0",
"eslint-config-prettier": "^7.2.0",
"gh-pages": "^3.1.0",
"husky": "^1.0.0",
"lint-staged": "^10.0.0",
"prettier": "^2.0.4",
"rimraf": "^3.0.2",
"rollup-plugin-dts": "^2.0.1",
"rollup-plugin-multi-input": "^1.1.1",
"rollup-plugin-node-builtins": "^2.1.2",
"typescript": "~4.1.2"
},
"eslintConfig": {
"extends": [
"@open-wc/eslint-config",
"eslint-config-prettier"
]
},
"prettier": {
"singleQuote": true,
"arrowParens": "avoid"
},
"husky": {
"hooks": {}
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"git add"
]
}
}