forked from benct/lovelace-multiple-entity-row
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1010 Bytes
/
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
{
"name": "multiple-entity-row",
"version": "4.2.0",
"description": "Show multiple entity states, attributes and icons on entity rows in Home Assistant's Lovelace UI",
"keywords": [
"home-assistant",
"homeassistant",
"lovelace",
"custom-cards",
"multiple",
"entity",
"row"
],
"module": "multiple-entity-row.js",
"repository": "https://github.com/benct/lovelace-multiple-entity-row.git",
"author": "benct <[email protected]>",
"license": "MIT",
"dependencies": {
"custom-card-helpers": "^1.7.0"
},
"devDependencies": {
"@babel/core": "^7.13.13",
"@babel/preset-env": "^7.13.12",
"babel-loader": "^8.2.2",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"prettier": "^2.2.1",
"webpack": "^5.28.0",
"webpack-cli": "^4.6.0"
},
"scripts": {
"lint": "eslint src/*.js",
"dev": "webpack -c webpack.config.js",
"build": "yarn lint && webpack -c webpack.config.js"
}
}