-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
53 lines (53 loc) · 1.41 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
{
"name": "lovelace-timer-bar-card",
"version": "1.31.0",
"description": "Progress bar display for Home Assistant timers",
"keywords": [
"home-assistant",
"homeassistant",
"hass",
"automation",
"lovelace",
"custom-cards"
],
"module": "timer-bar-card.js",
"repository": "git@github.com:rianadon/timer-bar-card.git",
"license": "Apache-2.0",
"dependencies": {
"card-tools": "github:thomasloven/lovelace-card-tools",
"custom-card-helpers": "1.8.0",
"lit": "^2.5.0"
},
"devDependencies": {
"@babel/core": "^7.20.5",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^24.0.0",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^10.0.1",
"@types/jest": "^29.2.4",
"@types/jest-image-snapshot": "^6.1.0",
"hass-taste-test": "^0.2.7",
"jest": "^29.3.1",
"jest-image-snapshot": "^6.1.0",
"playwright": "^1.45.1",
"prettier": "^2.8.1",
"rollup": "<3.0",
"rollup-plugin-terser": "^7.0.2",
"semantic-release": "^19.0.5",
"ts-jest": "^29.0.3",
"typescript": "^4.9.4"
},
"scripts": {
"start": "rollup -c --watch",
"build": "rollup -c",
"test": "hass-taste-test && jest",
"semantic-release": "semantic-release"
},
"jest": {
"rootDir": "test",
"preset": "ts-jest",
"testEnvironment": "node",
"testTimeout": 8000
}
}