-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
51 lines (51 loc) · 1.57 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
{
"name": "mini-climate-card",
"version": "v2.7.2",
"description": "a/c card for Home Assistant Lovelace UI",
"keywords": [
"home-assistant",
"homeassistant",
"hass",
"automation",
"lovelace",
"climate",
"custom-cards"
],
"main": "src/main.js",
"module": "src/main.js",
"repository": "[email protected]:artem-sedykh/mini-climate-card.git",
"author": "Artem Sedykh <[email protected]>",
"license": "MIT",
"dependencies": {
"@lit-labs/scoped-registry-mixin": "^1.0.3",
"@material/mwc-list": "^0.27.0",
"@material/mwc-menu": "^0.27.0",
"@material/mwc-ripple": "^0.27.0",
"lit": "^3.1.0",
"resize-observer-polyfill": "^1.5.1"
},
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-class-properties": "^7.3.3",
"@babel/plugin-proposal-decorators": "^7.3.0",
"@babel/plugin-transform-template-literals": "^7.2.0",
"@babel/preset-env": "^7.3.1",
"@rollup/plugin-json": "^4.0.3",
"babel-plugin-iife-wrap": "^1.1.0",
"babel-preset-minify": "^0.5.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.26.0",
"rollup": "^2.10.5",
"rollup-plugin-node-resolve": "^3.4.0"
},
"scripts": {
"build": "npm run lint && npm run rollup && npm run babel",
"rollup": "rollup -c",
"babel": "babel dist/mini-climate-card-bundle.js --out-file dist/mini-climate-card-bundle.js",
"lint": "eslint src/* --ext .js",
"lint:fix": "eslint src/* --ext .js --fix",
"watch": "rollup -c --watch"
}
}