-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 862 Bytes
/
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
{
"name": "mcp9808-temperature-sensor",
"version": "1.1.1",
"description": "MCP9808 I2C temperature sensor",
"main": "mcp9808-temperature-sensor.js",
"directories": {
"example": "example",
"test": "test"
},
"scripts": {
"lint": "jshint *.js examples/*.js test/*.js",
"test": "cd test && ./run-tests && cd .."
},
"repository": {
"type": "git",
"url": "https://github.com/fivdi/mcp9808-temperature-sensor.git"
},
"engines": {
"node": ">=10.0.0"
},
"dependencies": {
"i2c-bus": "^5.2.2",
"onoff": "^6.0.3",
"mutexify": "^1.3.1"
},
"devDependencies": {
"jshint": "^2.12.0"
},
"keywords": [
"mcp9808",
"temperature",
"sensor",
"iot",
"i2c",
"raspberry",
"raspi",
"rpi",
"pi",
"beaglebone",
"linux"
],
"author": "fivdi",
"license": "MIT"
}