forked from mishaaq/sun-card
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·52 lines (52 loc) · 1.48 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
{
"name": "sun-card",
"version": "4.4.0",
"description": "Lovelace sun card",
"keywords": [
"home-assistant",
"homeassistant",
"hass",
"automation",
"lovelace",
"custom-cards"
],
"module": "sun-card.js",
"repository": "[email protected]:mishaaq/sun-card.git",
"author": "Michał Żarłok <[email protected]>",
"license": "MIT",
"dependencies": {
"@rollup/pluginutils": "^3.0.10",
"@types/moment-timezone": "^0.5.13",
"custom-card-helpers": "^1.6.4",
"home-assistant-js-websocket": "^5.2.1",
"humanize-duration-ts": "^2.1.1",
"lit-element": "^2.3.1",
"moment": "^2.26.0",
"moment-timezone": "^0.5.31"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^12.0.0",
"@rollup/plugin-node-resolve": "^8.0.0",
"@rollup/plugin-replace": "^2.3.2",
"@rollup/plugin-typescript": "^4.1.2",
"@typescript-eslint/eslint-plugin": "~2.19",
"@typescript-eslint/parser": "~2.19",
"eslint": "~5.16",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.1.2",
"prettier": "~1.19",
"rollup": "^2.11.2",
"rollup-plugin-serve": "^1.0.1",
"rollup-plugin-sizes": "^1.0.2",
"rollup-plugin-terser": "^6.1.0",
"typescript": "^3.9.3"
},
"scripts": {
"build": "npm run lint && npm run rollup",
"lint": "eslint src/* --ext .js,.ts",
"rollup": "rollup -c",
"start": "rollup -c --watch"
}
}