generated from custom-cards/boilerplate-card
-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.6 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.6 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "fluid-level-background-card",
"version": "0.1.8.6",
"description": "Lovelace fluid-level-background-card",
"type": "module",
"keywords": [
"home-assistant",
"homeassistant",
"hass",
"automation",
"lovelace",
"custom-cards"
],
"module": "fluid-level-background-card.js",
"repository": "git@github.com:custom_cards/fluid-level-background-card.git",
"author": "Ian Richardson <iantrich@gmail.com>",
"license": "MIT",
"dependencies": {
"@commitlint/config-conventional": "^19.6.0",
"@mdi/js": "^7.4.47",
"colortranslator": "^4.0.0",
"custom-card-helpers": "^1.9.0",
"home-assistant-js-websocket": "^9.4.0",
"lit": "^3.2.1",
"rollup-plugin-sourcemaps": "^0.6.3"
},
"devDependencies": {
"@babel/core": "^7.26.10",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.25.9",
"@digitalroute/cz-conventional-changelog-for-jira": "^8.0.1",
"@playwright/test": "^1.41.2",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.3",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitest/coverage-v8": "^1.6.1",
"@vitest/ui": "^4.0.3",
"cz": "^1.8.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.37.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-lit": "^2.1.1",
"eslint-plugin-prettier": "^5.4.0",
"happy-dom": "^20.0.0",
"husky": "^9.1.7",
"prettier": "^3.5.2",
"rollup": "^4.50.1",
"rollup-plugin-serve": "^2.0.2",
"rollup-plugin-summary": "^3.0.0",
"@rollup/plugin-terser": "^0.4.4",
"rollup-plugin-typescript2": "^0.36.0",
"ts-lit-plugin": "^1.2.1",
"typescript": "^5.7.3",
"vitest": "^1.2.0",
"wait-on": "^8.0.5"
},
"scripts": {
"start": "rollup -c rollup.config.js --watch",
"build": "npm run lint && npm run rollup",
"lint": "eslint src/*.ts",
"rollup": "rollup -c",
"prepare": "husky install",
"commit": "cz",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:headed": "playwright test --headed",
"test:e2e:ui": "playwright test --ui",
"test:all": "npm run test:coverage && npm run test:e2e",
"test:sonar": "npm run test:coverage",
"test:setup": "scripts/test-setup"
},
"lint-staged": {
"*.js": [
"eslint",
"prettier --write"
]
}
}