forked from home-assistant/frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 2.36 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
51
52
53
54
55
56
57
58
59
60
{
"name": "home-assistant-polymer",
"version": "1.0.0",
"description": "A frontend for Home Assistant using the Polymer framework",
"repository": {
"type": "git",
"url": "https://github.com/home-assistant/home-assistant-polymer"
},
"scripts": {
"setup_js_dev": "git submodule init && git submodule update && cd home-assistant-js && npm install",
"clean": "rm -rf build/* build-temp/*",
"js_dev": "script/gen-service-worker.js && npm run watch_ru_all",
"js_dev_demo": "BUILD_DEMO=1 npm run watch_ru_all",
"js_prod": "BUILD_DEV=0 npm run ru_all && script/optimize-js.js",
"js_demo": "BUILD_DEV=0 BUILD_DEMO=1 npm run ru_all",
"frontend_html": "script/vulcanize.js",
"frontend_prod": "npm run js_prod && npm run frontend_html",
"frontend_demo": "npm run js_demo && npm run frontend_html",
"ru_all": "npm run ru_core && npm run ru_demo",
"ru_core": "rollup --config rollup/core.js",
"ru_demo": "rollup --config rollup/demo.js",
"watch_ru_all": "npm run watch_ru_core && npm run watch_ru_demo",
"watch_ru_core": "rollup --config rollup/core.js --watch --sourcemap inline",
"watch_ru_demo": "rollup --config rollup/demo.js --watch --sourcemap inline",
"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"
},
"author": "Paulus Schoutsen <[email protected]> (http://paulusschoutsen.nl)",
"license": "MIT",
"_depComment": "keymirror, nuclear-js, object-assign are for ha-js",
"dependencies": {
"classnames": "^2.2.5",
"keymirror": "^0.1.1",
"nuclear-js": "^1.3.0",
"object-assign": "^4.1.0"
},
"devDependencies": {
"bower": "^1.7.9",
"eslint": "^3.5.0",
"eslint-config-airbnb-base": "^10.0.1",
"eslint-plugin-html": "^1.5.2",
"eslint-plugin-import": "^2.2.0",
"html-minifier": "^3.0.3",
"hydrolysis": "^1.24.1",
"optimize-js": "^1.0.0",
"polymer-cli": "^0.17.0",
"polymer-lint": "^0.8.3",
"rollup": "^0.36.3",
"rollup-plugin-buble": "^0.14.0",
"rollup-plugin-commonjs": "^5.0.3",
"rollup-plugin-node-resolve": "^2.0.0",
"rollup-plugin-replace": "^1.1.1",
"rollup-plugin-uglify": "^1.0.1",
"rollup-watch": "^2.5.0",
"sw-precache": "^4.0.0",
"uglify-js": "^2.7.3",
"vulcanize": "^1.14.8"
}
}