ha-frontend/package.json

61 lines
2.3 KiB
JSON
Raw Normal View History

2015-07-13 01:57:15 +02:00
{
"name": "home-assistant-polymer",
"version": "1.0.0",
"description": "A frontend for Home Assistant using the Polymer framework",
2015-10-16 09:12:29 +02:00
"repository": {
"type": "git",
"url": "https://github.com/balloob/home-assistant-polymer"
},
2015-07-13 01:57:15 +02:00
"scripts": {
2016-07-14 08:04:26 +02:00
"setup_js_dev": "git submodule init && git submodule update && cd home-assistant-js && npm install",
2016-07-17 08:19:49 +02:00
"clean": "rm -rf build/* build-temp/*",
2016-08-08 09:08:01 +02:00
"js_dev": "script/sw-dev.js && npm run watch_ru_all",
2016-07-14 08:04:26 +02:00
"js_dev_demo": "BUILD_DEMO=1 npm run watch_ru_all",
"js_prod": "BUILD_DEV=0 npm run ru_all",
"js_demo": "BUILD_DEV=0 BUILD_DEMO=1 npm run ru_all",
"frontend_html": "script/vulcanize.js",
2016-06-15 03:22:45 +02:00
"frontend_prod": "npm run js_prod && npm run frontend_html",
"frontend_demo": "npm run js_demo && npm run frontend_html",
2016-07-19 06:28:42 +02:00
"ru_all": "npm run ru_core | npm run ru_demo",
2016-07-14 08:04:26 +02:00
"ru_core": "rollup --config rollup/core.js",
"ru_demo": "rollup --config rollup/demo.js",
2016-07-19 06:28:42 +02:00
"watch_ru_all": "npm run watch_ru_core | npm run watch_ru_demo",
2016-07-14 08:04:26 +02:00
"watch_ru_core": "rollup --config rollup/core.js --watch",
"watch_ru_demo": "rollup --config rollup/demo.js --watch",
2016-07-22 08:09:22 +02:00
"lint_js": "eslint src panels --ext html",
"lint_html": "ls -1 src/**/*.html panels/**/*.html | xargs polymer lint --input",
"test": "npm run lint_js && npm run lint_html"
2015-07-13 01:57:15 +02:00
},
"author": "Paulus Schoutsen <Paulus@PaulusSchoutsen.nl> (http://paulusschoutsen.nl)",
"license": "MIT",
2016-07-14 08:04:26 +02:00
"_depComment": "keymirror, nuclear-js, object-assign are for ha-js",
2015-08-13 05:29:58 +02:00
"dependencies": {
2016-07-14 08:04:26 +02:00
"keymirror": "^0.1.1",
"nuclear-js": "^1.3.0",
"object-assign": "^4.1.0",
"classnames": "^2.2.5"
2015-08-13 05:29:58 +02:00
},
2015-07-13 01:57:15 +02:00
"devDependencies": {
2016-04-08 05:48:51 +02:00
"bower": "^1.7.9",
2016-07-17 08:19:49 +02:00
"eslint": "^3.1.0",
"eslint-config-airbnb-base": "^4.0.2",
2016-07-18 08:18:48 +02:00
"eslint-plugin-html": "^1.5.1",
"eslint-plugin-import": "^1.11.0",
2016-07-12 07:07:17 +02:00
"html-minifier": "^3.0.1",
"hydrolysis": "^1.24.1",
2016-07-18 08:18:48 +02:00
"polymer-cli": "^0.12.0",
2016-08-02 18:06:22 +02:00
"polymer-lint": "^0.8.1",
2016-07-14 08:04:26 +02:00
"rollup": "^0.34.1",
"rollup-plugin-babel": "^2.6.1",
"rollup-plugin-buble": "^0.12.1",
"rollup-plugin-commonjs": "^3.1.0",
"rollup-plugin-multi-entry": "^2.0.0",
"rollup-plugin-node-resolve": "^1.7.1",
"rollup-plugin-replace": "^1.1.1",
"rollup-plugin-uglify": "^1.0.1",
"rollup-watch": "^2.5.0",
2016-08-08 09:29:31 +02:00
"sw-precache": "^4.0.0",
2016-07-14 08:04:26 +02:00
"vulcanize": "^1.14.8"
2015-07-13 01:57:15 +02:00
}
}