-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 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
49
{
"name": "@agilatech/bme280",
"version": "1.1.1",
"description": "Use either I2C or SPI to drive the Bosch BME280 Pressure / Temperature / Humidity sensor",
"main": "bme280.js",
"directories": {
"example": "examples",
"test": "test"
},
"scripts": {
"test": "mocha --exit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AgilatechSystems/bme280.git"
},
"keywords": [
"bme280",
"sensor",
"temperature",
"pressure",
"humidity",
"barometer",
"iot",
"i2c",
"spi",
"beaglebone",
"raspi",
"rpi",
"raspberry",
"pi",
"linux"
],
"author": "scotty <[email protected]> (http://agilatech.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/AgilatechSystems/bme280/issues"
},
"homepage": "https://github.com/AgilatechSystems/bme280#readme",
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^5.2.0"
},
"dependencies": {
"i2c-bus": "*",
"spi-device": "*",
"onoff": "*"
}
}