-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 752 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 752 Bytes
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
{
"name": "bme280",
"version": "2.1.1",
"description": "I2C Driver for the BME280 humidity, pressure and temperature sensor",
"main": "bme280.js",
"scripts": {
"lint": "jshint *.js examples/*.js test/*.js",
"test": "cd test && ./run-tests && cd .."
},
"repository": {
"type": "git",
"url": "https://github.com/fivdi/bme280.git"
},
"engines": {
"node": ">=10.0.0"
},
"dependencies": {
"i2c-bus": "^5.2.2"
},
"devDependencies": {
"jshint": "^2.12.0"
},
"keywords": [
"bme280",
"temperature",
"humidity",
"pressure",
"sensor",
"iot",
"i2c",
"raspberry",
"raspi",
"rpi",
"pi",
"beaglebone",
"linux"
],
"author": "fivdi",
"license": "MIT"
}