forked from AitorDB/home-assistant-sun-card
-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
63 lines (63 loc) · 2.22 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
61
62
63
{
"name": "lovelace-horizon-card",
"version": "1.1.0",
"packageManager": "yarn@4.5.1",
"description": "Successor to Sun Card - Visualize the position of the sun over the horizon",
"type": "commonjs",
"main": "dist/index.js",
"scripts": {
"dev": "rollup -c rollup.config.dev.mjs --watch",
"build": "rm -fr dist && yarn lint && yarn rollup",
"lint": "eslint src tests",
"rollup": "rollup -c",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rejuvenate/lovelace-horizon-card.git"
},
"author": "rejuvenate",
"license": "MIT",
"bugs": {
"url": "https://github.com/rejuvenate/lovelace-horizon-card/issues"
},
"homepage": "https://github.com/rejuvenate/lovelace-horizon-card#readme",
"devDependencies": {
"@babel/core": "^7.21.3",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.21.0",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-syntax-decorators": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.21.0",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@types/jest": "29.5.0",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"eslint": "^8.36.0",
"eslint-plugin-import": "^2.23.2",
"eslint-plugin-simple-import-sort": "10.0.0",
"jest": "29.5.0",
"jest-environment-jsdom": "29.5.0",
"jest-serializer-html": "^7.1.0",
"rollup": "^3.19.1",
"rollup-plugin-serve": "^2.0.2",
"rollup-plugin-typescript2": "^0.34.1",
"ts-jest": "29.1.0",
"typescript": "^5.0.4"
},
"dependencies": {
"custom-card-helpers": "^1.8.0",
"lit": "^2.7.2",
"suncalc3": "patch:suncalc3@npm%3A2.0.5#~/.yarn/patches/suncalc3-npm-2.0.5-9cdae05f76.patch"
},
"resolutions": {
"@formatjs/intl-utils": "npm:empty-npm-package@1.0.0"
},
"resolutionsComments": {
"@formatjs/intl-utils": "Outdated, producing a warning at build (https://rollupjs.org/troubleshooting/#error-this-is-undefined), unused by us, brought by custom-card-helpers => skip it"
}
}