forked from Yevgenium/weather-chart-card
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 946 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
{
"name": "weather-chart-card",
"version": "1.0.1",
"description": "Weather card with charts for Home Assistant Lovelace UI",
"keywords": [
"home-assistant",
"homeassistant",
"hass",
"automation",
"lovelace",
"custom-cards"
],
"module": "src/main.js",
"repository": "[email protected]:Yevgenium/lovelace-weather-card-chart.git",
"author": "Yevgeniy Prokopenko",
"license": "MIT",
"dependencies": {
"chart.js": "3.9.1",
"chartjs-plugin-datalabels": "^2.0.0",
"lit": "^2.0.2"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.0.1",
"acorn": "^8.4.1",
"eslint": "^5.16.0",
"rollup": "^2.33.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-serve": "^1.1.0"
},
"scripts": {
"start": "rollup -c rollup.config.dev.js --watch",
"build": "npm run lint && npm run rollup",
"lint": "eslint src/* --ext .js",
"rollup": "rollup -c"
}
}