-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
48 lines (48 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
46
47
48
{
"name": "rgb-light-card",
"description": "A Home Assistant card for RGB lights",
"version": "1.13.0",
"author": "Boris K",
"bugs": "https://github.com/bokub/rgb-light-card/issues",
"scripts": {
"dev": "serve --cors .",
"serve": "serve --cors .",
"ngrok": "ngrok http http://localhost:3000",
"prettier": "prettier --write --ignore-path .gitignore .",
"check-prettier": "prettier --check --ignore-path .gitignore . ",
"test": "vitest run",
"coverage": "vitest run --coverage",
"prepare": "husky"
},
"devDependencies": {
"@bokub/prettier-config": "^1.1.0",
"@vitest/coverage-v8": "^2.0.5",
"browser-env": "^3.3.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^2.2.1",
"serve": "^14.2.3",
"vitest": "^2.0.5",
"yamljs": "^0.3.0"
},
"files": [
"card.js"
],
"homepage": "https://github.com/bokub/rgb-light-card",
"keywords": [
"automation",
"custom-cards",
"hass",
"home-assistant",
"homeassistant",
"light",
"rgb"
],
"license": "MIT",
"main": "card.js",
"prettier": "@bokub/prettier-config",
"repository": "bokub/rgb-light-card",
"lint-staged": {
"*": "prettier --write --ignore-unknown"
}
}