forked from pkissling/clock-weather-card
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.63 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
{
"name": "clock-weather-card",
"version": "2.8.4",
"description": "Lovelace clock-weather-card",
"keywords": [
"home-assistant",
"homeassistant",
"hass",
"automation",
"lovelace",
"custom-cards"
],
"module": "clock-weather-card.js",
"repository": "[email protected]:pkissling/clock-weather-card.git",
"author": "Patrick Kissling <[email protected]>",
"license": "MIT",
"type": "module",
"dependencies": {
"custom-card-helpers": "^1.8.0",
"home-assistant-js-websocket": "^9.0.0",
"lit": "^2.8.0",
"luxon": "^3.4.3"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-decorators": "^7.14.5",
"@rollup/plugin-babel": "^6.0.0",
"@rollup/plugin-image": "^3.0.0",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@types/luxon": "^3.3.2",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.0.1",
"eslint-config-standard-with-typescript": "^43.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 || ^17.0.0",
"eslint-plugin-promise": "^7.0.0",
"rollup": "^4.0.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-gzip": "^4.0.0",
"rollup-plugin-serve": "^3.0.0",
"@rollup/plugin-terser": "^0.4.0",
"rollup-plugin-typescript2": "^0.36.0",
"typescript": "*"
},
"scripts": {
"start": "rollup -c rollup.config.dev.js --watch",
"build": "yarn rollup",
"lint": "eslint **/*.ts --max-warnings 0",
"rollup": "rollup -c"
}
}