forked from Gh61/lovelace-hue-like-light-card
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.36 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
{
"name": "hue-like-light-card",
"version": "v0.4",
"description": "Hue-Like Light Card",
"keywords": [
"home-assistant",
"homeassistant",
"hass",
"automation",
"lovelace",
"custom-cards"
],
"module": "hue-like-light-card.js",
"repository": "[email protected]:cas112358/lovelace-hue-like-light-card.git",
"author": "Carwyn Owen",
"license": "LGPLv2.1",
"dependencies": {
"custom-card-helpers": "^1.9.0",
"home-assistant-js-websocket": "^8.0.1",
"lit": "^2.2.4"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.0.1",
"@types/jest": "^29.2.4",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"eslint": "^8.33.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"jest": "^29.3.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.34.1",
"ts-jest": "^29.0.3",
"tslib": "^2.4.0",
"typescript": "^4.6.4"
},
"scripts": {
"test": "jest",
"build": "npm run lint && npm run rollup",
"fixnbuild": "npm run lintfix && npm run rollup",
"lint": "eslint src/**",
"lintfix": "eslint src/** --fix",
"rollup": "rollup -c"
}
}