forked from andrey-git/home-assistant-custom-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.63 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
{
"name": "home-assistant-custom-ui",
"version": "1.0.0",
"description": "",
"main": "index.js",
"dependencies": {
"babel-core": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"bower": "^1.8.2",
"del": "^3.0.0",
"eslint": "^4.11.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-html": "^3.2.2",
"eslint-plugin-import": "^2.8.0",
"gulp": "^3.9.1",
"gulp-babel": "^7.0.0",
"gulp-filter": "^5.0.1",
"gulp-htmlmin": "^3.0.0",
"gulp-if": "^2.0.2",
"gulp-rename": "^1.2.2",
"gulp-uglify": "^3.0.0",
"merge-stream": "^1.0.1",
"polymer-build": "^2.1.0",
"polymer-bundler": "^3.1.0",
"require-dir": "^0.3.2",
"uglify-es": "^3.1.9"
},
"scripts": {
"init": "yarn install && bower install",
"test": "eslint src/* gulp --ext html,js",
"gulp": "gulp",
"gzip": "gzip state-card-custom-ui*.html -9fk",
"build": "yarn run gulp && cp build/src/state-card-custom-ui*.html . && yarn run gzip",
"deploy": "yarn run test && yarn run build && cp state-card-custom-ui*.html* ~/.homeassistant/www/custom_ui/",
"deploy_dev": "yarn run test && rm -f ~/.homeassistant/www/custom_ui/* && cp src/* ~/.homeassistant/www/custom_ui/",
"fix_date": "script/fix_date.sh",
"release": "yarn run test && yarn run fix_date && yarn run deploy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andrey-git/home-assistant-custom-ui.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/andrey-git/home-assistant-custom-ui/issues"
},
"homepage": "https://github.com/andrey-git/home-assistant-custom-ui#readme"
}