-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 942 Bytes
/
package.json
File metadata and controls
50 lines (50 loc) · 942 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
41
42
43
44
45
46
47
48
49
50
{
"author": "David Momenso",
"contributors": [
"Kerry Shetline"
],
"name": "node-dht-sensor",
"description": "Reads data from DHT sensors on Raspberry Pi",
"version": "0.5.0",
"repository": {
"url": "https://github.com/momenso/node-dht-sensor"
},
"scripts": {
"install": "node-gyp configure",
"postinstall": "node-gyp build",
"test": "mocha",
"prepare": "husky"
},
"main": "./lib",
"files": [
"/src",
"/lib",
"/binding.gyp"
],
"dependencies": {
"node-addon-api": "^1.6.3"
},
"devDependencies": {
"chai": "^4.2.0",
"husky": "^9.1.7",
"mocha": "^11.7.5",
"prettier": "^3.8.3",
"pretty-quick": "^4.2.2"
},
"license": "LGPL-3.0",
"keywords": [
"DHT",
"DHT11",
"DHT22",
"AM2302",
"sensor",
"temperature",
"humidity",
"raspberry",
"raspberry pi",
"raspberry pi 5",
"rpi",
"libgpiod",
"gpiod"
]
}