-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathpackage.json
57 lines (57 loc) · 1.64 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
54
55
56
57
{
"name": "room-card",
"version": "1.08.04",
"description": "Show entities in Home Assistant's Lovelace UI",
"keywords": [
"home-assistant",
"homeassistant",
"lovelace",
"custom-cards",
"multiple",
"entity",
"row"
],
"module": "room-card.js",
"license": "MIT",
"dependencies": {
"babel-jest": "^29.6.4",
"custom-card-helpers": "^1.8.0",
"jest-environment-jsdom": "^29.5.0",
"jest-ts-auto-mock": "^2.1.0",
"lit": "^3.1.0",
"minify-html-literals-loader": "^1.1.1",
"ts-auto-mock": "3.5.0",
"ttypescript": "^1.5.13",
"yarn": "^1.22.18"
},
"devDependencies": {
"@babel/core": "^7.23.5",
"@babel/plugin-transform-runtime": "^7.23.7",
"@babel/preset-env": "^7.23.7",
"@types/jest": "^29.5.10",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.59.1",
"babel-loader": "^9.1.3",
"codecov": "^3.8.3",
"compression-webpack-plugin": "^10.0.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^29.6.2",
"prettier": "^3.1.1",
"ts-jest": "^29.1.1",
"ts-loader": "^9.4.4",
"typescript": "^4.9.5",
"webpack": "^5.88.2",
"webpack-cli": "^5.0.2"
},
"scripts": {
"lint": "eslint src/**/*.ts",
"dev": "webpack -c webpack.config.js",
"build": "yarn lint && webpack -c webpack.config.js",
"test": "jest",
"coverage": "jest --coverage",
"workflow": "jest --coverage --json --outputFile=/home/runner/work/room-card/room-card/jest.results.json",
"prebuild": "copy git-hooks\\pre-commit .git\\hooks\\ && echo 'hook copied'"
}
}