forked from kalkih/mini-media-player
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·46 lines (46 loc) · 1.4 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
{
"name": "mini-media-player",
"version": "v1.5.1",
"description": "A minimalistic yet customizable media player card for Home Assistant Lovelace UI",
"keywords": [
"home-assistant",
"homeassistant",
"hass",
"automation",
"lovelace",
"media",
"custom-cards"
],
"main": "src/main.js",
"module": "src/main.js",
"repository": "[email protected]:kalkih/mini-media-player.git",
"author": "Karl Kihlström <[email protected]>",
"license": "MIT",
"dependencies": {
"lit-element": "^2.1.0",
"lit-html": "^1.0.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",
"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.16.0",
"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-media-player-bundle.js --out-file dist/mini-media-player-bundle.js",
"lint": "eslint src/* --ext .js",
"watch": "rollup -c --watch"
}
}