-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.07 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
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "fluid-level-background-card",
"version": "0.0.1",
"description": "Lovelace fluid-level-background-card",
"keywords": [
"home-assistant",
"homeassistant",
"hass",
"automation",
"lovelace",
"custom-cards"
],
"module": "fluid-level-background-card.js",
"repository": "[email protected]:custom_cards/fluid-level-background-card.git",
"author": "Ian Richardson <[email protected]>",
"license": "MIT",
"dependencies": {
"@commitlint/config-conventional": "^18.4.3",
"colortranslator": "^4.0.0",
"custom-card-helpers": "^1.9.0",
"home-assistant-js-websocket": "^9.1.0",
"lit": "^2.8.0",
"rollup-plugin-sourcemaps": "^0.6.3"
},
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.23.7",
"@digitalroute/cz-conventional-changelog-for-jira": "^8.0.1",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.1.0",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"cz": "^1.8.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-lit": "^1.11.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"prettier": "^3.1.1",
"rollup": "^2.79.1",
"rollup-plugin-serve": "^2.0.2",
"rollup-plugin-summary": "^2.0.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.36.0",
"rollup-plugin-uglify": "^6.0.4",
"ts-lit-plugin": "^1.2.1",
"typescript": "^5.1.6"
},
"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"
},
"lint-staged": {
"*.js": [
"eslint",
"prettier --write"
]
}
}