forked from grittisemper/frk-waze-card
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.09 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
{
"name": "waze-card",
"version": "2.0.0",
"description": "A waze card for Home Assistant Lovelace UI",
"keywords": [
"home-assistant",
"homeassistant",
"hass",
"automation",
"lovelace",
"custom-cards",
"waze"
],
"main": "main.js",
"module": "main.js",
"repository": "[email protected]:ljmerza/waze-card.git",
"author": "Leonardo Merza <[email protected]>",
"license": "MIT",
"dependencies": {
"lit-element": "^2.0.1"
},
"devDependencies": {
"eslint": "^5.13.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"rollup": "^0.66.6",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-terser": "^3.0.0"
},
"scripts": {
"build": "npm run lint && npm run rollup",
"rollup": "rollup -c",
"lint": "eslint main.js style.js",
"watch": "rollup -c --watch"
}
}