-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.44 KB
/
Copy pathpackage.json
File metadata and controls
103 lines (103 loc) · 2.44 KB
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
{
"name": "iobroker.i2c",
"version": "2.0.0",
"description": "Communicates with devices over I2C bus.",
"author": {
"name": "UncleSamSwiss",
"email": "samuel.weibel@gmail.com"
},
"contributors": [
{
"name": "CC1337"
},
{
"name": "BigDi"
},
{
"name": "crycode-de"
}
],
"homepage": "https://github.com/UncleSamSwiss/ioBroker.i2c",
"license": "Apache-2.0",
"keywords": [
"ioBroker",
"I2C",
"Adafruit STEMMA Soil Sensor",
"ADS1015",
"ADS1115",
"BH1750",
"BME280",
"GY-US42",
"HMC5883L",
"INA219",
"MCP23008",
"MCP23017",
"MCP4725",
"PCF8574",
"PCA9685",
"QMC5883L",
"SHT3x",
"SRF02",
"SX1507",
"SX1508",
"SX1509",
"Raspberry Pi",
"BeagleBone",
"Intel Edison"
],
"repository": {
"type": "git",
"url": "https://github.com/UncleSamSwiss/ioBroker.i2c.git"
},
"engines": {
"node": ">= 20"
},
"os": [
"linux"
],
"dependencies": {
"@iobroker/adapter-core": "^3.3.2",
"@iobroker/dm-utils": "^3.0.19",
"i2c-bus": "^5.2.3",
"nan": "^2.26.2"
},
"devDependencies": {
"@alcalzone/release-script": "^5.2.1",
"@alcalzone/release-script-plugin-iobroker": "^5.2.0",
"@alcalzone/release-script-plugin-license": "^5.2.0",
"@alcalzone/release-script-plugin-manual-review": "^5.2.0",
"@iobroker/adapter-dev": "^1.5.0",
"@iobroker/eslint-config": "^2.2.0",
"@iobroker/testing": "^5.2.2",
"@tsconfig/node20": "^20.1.9",
"@types/i2c-bus": "^5.1.2",
"@types/iobroker": "npm:@iobroker/types@^7.1.0",
"@types/node": "^20.19.42",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.2",
"typescript": "~5.9.3"
},
"main": "src/main.ts",
"files": [
"admin{,/!(src)/**}/!(tsconfig|tsconfig.*|.eslintrc).{json,json5}",
"admin{,/!(src)/**}/*.{html,css,png,svg,jpg,js}",
"src/",
"www/",
"io-package.json",
"LICENSE"
],
"scripts": {
"check": "tsc --noEmit",
"test:ts": "mocha --config test/mocharc.custom.json src/**/*.test.ts",
"test:package": "mocha test/package --exit",
"test:integration": "mocha test/integration --exit",
"test": "npm run test:ts && npm run test:package",
"lint": "eslint -c eslint.config.mjs .",
"translate": "translate-adapter",
"release": "release-script"
},
"bugs": {
"url": "https://github.com/UncleSamSwiss/ioBroker.i2c/issues"
},
"readmeFilename": "README.md"
}