-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
132 lines (132 loc) · 4.32 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "openhab-remote",
"version": "1.3.2",
"description": "UI for openHAB on Tizen based smart watches",
"homepage": "https://github.com/stefan-torstensson/openhab-remote",
"author": "Stefan Torstensson",
"license": "MIT",
"main": "src/ui/main.ts",
"tizen": {
"appName": "Remote for openHAB",
"appId": "2qUDDFeeek.OpenHABRemote",
"package": "2qUDDFeeek"
},
"scripts": {
"start": "grunt watch",
"test": "grunt test",
"postinstall": "node ./update-library-info.js",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md"
},
"dependencies": {
"aurelia-dependency-injection": "^1.5.2",
"core-js": "^3.8.3",
"debounce-decorator": "^1.0.6",
"event-source-polyfill": "^1.0.22",
"reflect-metadata": "^0.1.13",
"sprintf-js": "^1.1.2",
"swipe-listener": "^1.3.0",
"url": "^0.11.0",
"vue": "^2.6.12",
"vue-class-component": "^7.2.6",
"vue-property-decorator": "^8.5.1",
"vue-router": "^3.4.7"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-decorators": "^7.12.12",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/plugin-proposal-optional-chaining": "^7.12.1",
"@babel/plugin-syntax-decorators": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"@babel/preset-typescript": "^7.12.1",
"@types/chai": "^4.2.14",
"@types/chai-as-promised": "^7.1.3",
"@types/mocha": "^5.2.7",
"@types/node-fetch": "^2.5.8",
"@types/sinon": "^9.0.10",
"@types/sinon-chai": "^3.2.5",
"@types/sprintf-js": "^1.1.2",
"@vue/test-utils": "1.0.4",
"babel-loader": "^8.2.2",
"babel-plugin-transform-typescript-metadata": "^0.3.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"conventional-changelog-cli": "^2.1.0",
"copy-webpack-plugin": "^5.1.2",
"cross-env": "^7.0.3",
"css-loader": "^3.6.0",
"file-loader": "^6.1.1",
"grunt": "^1.3.0",
"grunt-contrib-clean": "^2.0.0",
"grunt-env": "^1.0.1",
"grunt-shell": "^3.0.1",
"html-loader": "^1.3.2",
"html-webpack-plugin": "^4.5.1",
"jsdom": "^16.4.0",
"jsdom-global": "^3.0.2",
"license-checker": "^25.0.1",
"mini-css-extract-plugin": "^0.9.0",
"mocha": "^5.2.0",
"mocha-webpack": "^2.0.0-beta.0",
"node-fetch": "^2.6.1",
"node-sass": "^4.14.1",
"postcss-loader": "^3.0.0",
"sass-loader": "^8.0.2",
"script-ext-html-webpack-plugin": "^2.1.4",
"sharp": "^0.25.4",
"sinon": "^9.2.3",
"sinon-chai": "^3.5.0",
"style-loader": "^1.3.0",
"time-grunt": "^2.0.0",
"ts-sinon": "^1.2.1",
"tslint": "^6.1.3",
"tslint-loader": "^3.5.4",
"typescript": "^3.9.7",
"url-loader": "^4.1.1",
"vue-loader": "^15.9.6",
"vue-svg-loader": "^0.15.0",
"vue-template-compiler": "^2.6.12",
"webpack": "^4.46.0",
"webpack-bundle-analyzer": "^3.9.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^4.2.2",
"webpack-node-externals": "^1.7.2",
"xml-js": "^1.6.11",
"xml-webpack-plugin": "^1.1.0"
},
"babel": {
"presets": [
[
"@babel/env",
{
"targets": {
"chrome": "47"
},
"useBuiltIns": "usage",
"corejs": "3.8"
}
],
"@babel/preset-typescript"
],
"plugins": [
"@babel/transform-typescript",
[
"@babel/plugin-proposal-decorators",
{
"legacy": true
}
],
[
"@babel/proposal-class-properties",
{
"loose": true
}
],
"@babel/proposal-object-rest-spread",
"@babel/plugin-proposal-optional-chaining"
]
},
"postcss": {}
}