forked from denysdovhan/vacuum-card
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.25 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
{
"name": "vacuum-card",
"version": "2.6.3",
"description": "Vacuum cleaner card for Home Assistant Lovelace UI",
"main": "dist/vacuum-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 install"
},
"keywords": [
"home-assistant",
"homeassistant",
"hass",
"automation",
"lovelace",
"custom-cards",
"vacuum"
],
"author": "Denys Dovhan <[email protected]> (http://denysdovhan.com/)",
"license": "MIT",
"dependencies": {
"custom-card-helpers": "^1.6.4",
"ha-template": "^1.0.5",
"lit": "^2.0.0",
"lodash.get": "^4.4.2"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@rollup/plugin-babel": "^5.0.0",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-image": "^2.0.4",
"@rollup/plugin-json": "^4.0.3",
"@rollup/plugin-node-resolve": "^14.1.0",
"@semantic-release/git": "^10.0.1",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"postcss": "^8.4.6",
"postcss-preset-env": "^7.4.1",
"prettier": "^2.0.5",
"rollup": "^2.7.6",
"rollup-plugin-minify-html-literals": "^1.2.6",
"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",
"semantic-release": "^19.0.5"
},
"browserslist": [
"last 2 versions",
"not dead"
],
"lint-staged": {
"*.js": "eslint --fix",
"**/*": "prettier --write --ignore-unknown"
},
"prettier": {
"singleQuote": true
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
[
"@semantic-release/github",
{
"assets": [
{
"path": "dist/vacuum-card.js",
"label": "vacuum-card.js"
}
]
}
],
"@semantic-release/git"
]
}
}