-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathpackage.json
executable file
·45 lines (45 loc) · 1.26 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": "light-entity-card",
"version": "6.1.3",
"description": "A light-entity card for Home Assistant Lovelace UI",
"keywords": [
"home-assistant",
"homeassistant",
"hass",
"automation",
"lovelace",
"custom-cards",
"light-entity"
],
"repository": "git@github.com:ljmerza/light-entity-card.git",
"author": "Leonardo Merza <ljmerza@gmail.com>",
"license": "MIT",
"dependencies": {
"@babel/polyfill": "^7.4.4",
"@jaames/iro": "^5.5.2",
"@lit-labs/scoped-registry-mixin": "^1.0.0",
"@material/mwc-icon": "^0.25.3",
"@material/mwc-list": "^0.25.3",
"@material/mwc-menu": "^0.25.3",
"@material/mwc-notched-outline": "^0.25.3",
"@material/mwc-select": "^0.25.3",
"core-js": "^2.6.5",
"lit": "^2.1.2",
"lit-element": "^2.2.1"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"babel-loader": "^8.0.6",
"eslint": "^6.1.0",
"webpack": "^4.38.0",
"webpack-cli": "^3.3.6",
"webpack-merge": "^4.2.1"
},
"scripts": {
"lint": "eslint --fix ./src",
"start": "webpack --watch --config webpack/config.dev.js",
"build": "webpack --config webpack/config.prod.js"
}
}