-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
48 lines (48 loc) · 1.01 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
{
"name": "generic-sensors-adapter",
"display_name": "Generic Sensors",
"version": "0.0.17",
"description": "Generic I2C Sensors for WebThings Gateway",
"author": "Philippe Coval",
"main": "index.js",
"scripts": {
"lint": "eslint --fix . || eslint .",
"test": "eslint ."
},
"keywords": [
"adapter",
"i2c",
"sensors"
],
"license": "MPL-2.0",
"homepage": "https://github.com/rzr/generic-sensors-webthings",
"repository": {
"type": "git",
"url": "https://github.com/rzr/generic-sensors-webthings.git"
},
"bugs": {
"url": "https://github.com/rzr/generic-sensors-webthings/issues"
},
"files": [
"LICENSE",
"SHA256SUMS",
"generic-sensors-adapter.js",
"index.js",
"manifest.json",
"node_modules"
],
"dependencies": {
"generic-sensors-lite": "0.0.18"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.11.0"
},
"bundledDependencies": [
"generic-sensors-lite"
],
"os": [
"!darwin",
"!win32"
]
}