-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
51 lines (51 loc) · 1.66 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
{
"name": "hue-like-light-card",
"version": "v1.7.1",
"description": "Hue-Like Light Card",
"keywords": [
"home-assistant",
"homeassistant",
"hass",
"automation",
"lovelace",
"custom-cards"
],
"module": "hue-like-light-card.js",
"repository": "git@github.com:Gh61/lovelace-hue-like-light-card.git",
"author": "Tom Zenkner <t.zenkner@email.cz>",
"license": "LGPLv2.1",
"dependencies": {
"@egjs/hammerjs": "^2.0.17",
"colorthief": "npm:@pioug/colorthief@^3.0.1",
"custom-card-helpers": "^1.9.0",
"home-assistant-js-websocket": "^9.4.0",
"lit": "^3.2.1"
},
"devDependencies": {
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"eslint": "^8.57.1",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-plugin-import": "^2.31.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"rollup-plugin-serve": "^3.0.0",
"rollup-plugin-typescript2": "^0.36.0",
"ts-jest": "^29.2.5",
"tslib": "^2.8.0",
"typescript": "^5.5.4"
},
"scripts": {
"start": "rollup -c --watch --runServer true",
"test": "jest",
"build": "npm run lint && npm run rollup",
"fixnbuild": "npm run lintfix && npm run rollup",
"lint": "eslint src/** tests/**",
"lintfix": "eslint src/** tests/** --fix",
"rollup": "rollup -c"
}
}