forked from ioBroker/ioBroker.knx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 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
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
{
"name": "iobroker.knx",
"version": "2.0.10",
"description": "ioBroker knx Adapter ",
"author": {
"name": "K.Ringmann",
"email": "info@punktnetzwerk.net"
},
"engines": {
"node": ">=14.15.4"
},
"contributors": [
{
"name": "K.Ringmann",
"email": "info@punktnetzwerk.net"
}
],
"homepage": "https://github.com/ioBroker/ioBroker.knx",
"licenses": [
{
"type": "CC-BY-NC-4.0",
"url": "https://github.com/ioBroker/ioBroker.knx/blob/master/LICENSE"
}
],
"license": "CC-BY-NC-4.0",
"keywords": [
"ioBroker",
"knx",
"Smart Home",
"home automation"
],
"main": "knx.js",
"files": [
"admin/",
"lib/easy-knx/LICENSE.txt",
"lib/cloudCert.crt",
"lib/utils.js",
"io-package.json",
"LICENSE",
"knx.js"
],
"repository": {
"type": "git",
"url": "https://github.com/ioBroker/ioBroker.knx"
},
"dependencies": {
"@iobroker/adapter-core": "^2.5.1",
"binary-parser": "^1.6.2",
"binary-protocol": "^0.0.0",
"core-js": "^3.19.1",
"core-js-compat": "^3.20.2",
"ieee754": "^1.2.1",
"jsonwebtoken": "^8.5.1",
"similarity": "^1.2.1",
"string-similarity": "^4.0.4",
"underscore": "^1.13.1",
"xmldom": "^0.1.27",
"xpath": "^0.0.32"
},
"devDependencies": {
"@alcalzone/release-script": "^3.4.1",
"@alcalzone/release-script-plugin-iobroker": "^3.4.1",
"@alcalzone/release-script-plugin-license": "^3.4.1",
"babel-core": "^6.26.3",
"babel-minify": "^0.5.1",
"babel-plugin-polyfill-corejs2": "^0.3.0",
"babel-plugin-polyfill-corejs3": "^0.5.0",
"babelify": "^10.0.0",
"browserify": "^17.0.0",
"chai": "^4.3.4",
"gulp": "^4.0.2",
"gulp-javascript-obfuscator": "^1.1.6",
"gulp-rename": "^2.0.0",
"gulp-replace": "^1.1.3",
"gulp-sourcemaps": "^3.0.0",
"mocha": "^9.1.3",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0",
"vinyl-sourcemaps-apply": "^0.2.1"
},
"scripts": {
"test": "node node_modules/mocha/bin/mocha",
"prepublishOnly": "gulp",
"release": "release-script",
"release-patch": "release-script patch --yes",
"release-minor": "release-script minor --yes",
"release-major": "release-script major --yes",
"build": "gulp"
},
"bugs": {
"url": "https://github.com/ioBroker/ioBroker.knx/issues"
},
"readmeFilename": "README.md"
}