forked from kalkih/mini-graph-card
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·50 lines (50 loc) · 1.51 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
{
"name": "mini-graph-card",
"version": "0.5.0",
"description": "A minimalistic and customizable graph card for Home Assistant Lovelace UI",
"keywords": [
"home-assistant",
"homeassistant",
"hass",
"automation",
"lovelace",
"sensor",
"graph",
"svg",
"custom-cards"
],
"main": "src/main.js",
"module": "src/main.js",
"repository": "git@github.com:kalkih/mini-graph-card.git",
"author": "Karl Kihlström <mrkihlstrom@gmail.com>",
"license": "MIT",
"dependencies": {
"@kalkih/lz-string": "^1.4.5",
"lit-element": "^2.1.0",
"localforage": "^1.7.3"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.3",
"@babel/plugin-proposal-class-properties": "^7.3.3",
"@babel/plugin-proposal-decorators": "^7.3.0",
"@babel/plugin-proposal-object-rest-spread": "^7.3.4",
"@babel/plugin-transform-spread": "^7.2.2",
"@babel/plugin-transform-template-literals": "^7.2.0",
"@babel/preset-env": "^7.3.1",
"babel-plugin-iife-wrap": "^1.1.0",
"babel-preset-minify": "^0.5.0",
"eslint": "^5.3.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.2",
"rollup": "^0.66.6",
"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-graph-card-bundle.js --out-file dist/mini-graph-card-bundle.js",
"lint": "eslint src/* --ext .js",
"watch": "rollup -c --watch"
}
}