-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
executable file
·60 lines (60 loc) · 1.82 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
55
56
57
58
59
60
{
"name": "sun-card",
"version": "5.0.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": {
"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",
"@rollup/pluginutils": "^3.0.10",
"@types/moment-timezone": "^0.5.13",
"@typescript-eslint/eslint-plugin": "~2.19",
"@typescript-eslint/parser": "~2.19",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-config-airbnb-typescript": "^6.3.1",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.1",
"rollup": "^2.11.2",
"rollup-plugin-serve": "^1.0.1",
"rollup-plugin-sizes": "^1.0.2",
"rollup-plugin-terser": "^6.1.0",
"stylelint": "^13.2.1",
"stylelint-config-prettier": "^8.0.1",
"typescript": "^3.9.3"
},
"scripts": {
"build": "npm run lint && npm run rollup",
"lint": "run-p -c --aggregate-output lint:*",
"lint:types": "tsc --noEmit",
"lint:es": "eslint --color src/**/* \"./**/*.@(js|ts)\"",
"lint:styles": "stylelint --color \"./**/*.@(js|ts)\"",
"rollup": "rollup -c",
"start": "rollup -c --watch"
}
}