-
-
Notifications
You must be signed in to change notification settings - Fork 91
/
package.json
109 lines (109 loc) · 2.77 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "purifier-card",
"version": "2.6.2",
"description": "Air Purifier card for Home Assistant Lovelace UI",
"main": "dist/purifier-card.js",
"scripts": {
"start": "rollup -c --watch",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier --write .",
"build": "rollup -c",
"test": "npm run lint && npm run build",
"prepare": "husky"
},
"keywords": [
"home-assistant",
"homeassistant",
"hass",
"automation",
"lovelace",
"custom-cards",
"purifier"
],
"author": "Denys Dovhan <[email protected]> (http://denysdovhan.com/)",
"license": "MIT",
"dependencies": {
"@types/lodash": "^4.14.195",
"custom-card-helpers": "^1.6.4",
"ha-template": "^1.2.2",
"home-assistant-js-websocket": "^9.1.0",
"lit": "^2.2.2",
"lodash": "^4.17.21"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.2",
"@rollup/plugin-image": "^3.0.1",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-replace": "^5.0.2",
"@semantic-release/git": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"eslint": "^8.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.20.2",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"postcss-preset-env": "^9.1.2",
"prettier": "^3.2.5",
"rollup": "^2.7.6",
"rollup-plugin-html-literals": "^1.1.8",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-postcss-lit": "^2.0.0",
"rollup-plugin-serve": "^2.0.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.36.0",
"semantic-release": "^24.0.0",
"typescript": "^5.1.3"
},
"browserslist": [
"last 2 versions",
"not dead"
],
"lint-staged": {
"*.js": "eslint --fix",
"**/*": "prettier --write --ignore-unknown"
},
"prettier": {
"singleQuote": true
},
"release": {
"branches": [
"main"
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "angular",
"releaseRules": [
{
"type": "chore",
"scope": "deps",
"release": "patch"
}
]
}
],
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
[
"@semantic-release/github",
{
"assets": [
{
"path": "dist/purifier-card.js",
"label": "purifier-card.js"
}
]
}
],
"@semantic-release/git"
]
}
}