forked from maxwroc/battery-state-card
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.16 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
{
"name": "battery-state-card",
"version": "1.6.4",
"description": "Battery State card for Home Assistant",
"main": "dist/battery-state-card.js",
"repository": {
"type": "git",
"url": "https://github.com/maxwroc/battery-state-card.git"
},
"scripts": {
"prebuild": "node build/prebuild.js",
"build": "npm run build:debug",
"build:debug": "rollup -c",
"build:release": "rollup --release -c",
"build:release:es5": "rollup --release --target=es5 -c",
"prerelease": "node build/prebuild.js",
"release": "npm run build:release",
"watch": "rollup -c --watch",
"test": "npm run build && copy dist\\battery-state-card.js ..\\lovelace-card-tester\\docs\\cards"
},
"keywords": [
"battery",
"state",
"home",
"assistant",
"lovelace"
],
"author": "Max Chodorowski",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-node-resolve": "^11.1.1",
"@rollup/plugin-typescript": "^8.1.0",
"rollup": "^2.39.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-minify-html-literals": "^1.2.5",
"tslib": "^2.1.0",
"typescript": "^4.1.3",
"adm-zip": "^0.5.3"
},
"dependencies": {}
}