-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
63 lines (63 loc) · 1.48 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
{
"name": "iobroker.sql",
"description": "Log states into SQL database",
"version": "3.0.1",
"author": "bluefox <[email protected]>",
"contributors": [
"bluefox <[email protected]>",
"Apollon77"
],
"homepage": "https://github.com/ioBroker/ioBroker.sql",
"repository": {
"type": "git",
"url": "https://github.com/ioBroker/ioBroker.sql"
},
"engines": {
"node": ">=16.0.0"
},
"keywords": [
"ioBroker",
"log data",
"home automation"
],
"optionalDependencies": {
"mysql2": "^3.6.5",
"pg": "^8.11.3",
"sqlite3": "^5.1.6",
"mssql": "^10.0.1"
},
"dependencies": {
"sql-client": "^3.0.0",
"@iobroker/adapter-core": "^3.1.6"
},
"devDependencies": {
"@alcalzone/release-script": "^3.7.0",
"@alcalzone/release-script-plugin-iobroker": "^3.7.0",
"@alcalzone/release-script-plugin-license": "^3.7.0",
"axios": "^1.7.7",
"gulp": "^4.0.2",
"mocha": "^10.8.2",
"chai": "^4.3.8"
},
"bugs": {
"url": "https://github.com/ioBroker/ioBroker.sql/issues"
},
"main": "main.js",
"files": [
"admin/",
"img/",
"lib/",
"io-package.json",
"LICENSE",
"main.js"
],
"scripts": {
"test": "node node_modules/mocha/bin/mocha --exit",
"release": "release-script",
"release-patch": "release-script patch --yes",
"release-minor": "release-script minor --yes",
"release-major": "release-script major --yes",
"update-packages": "ncu --upgrade"
},
"license": "MIT"
}