-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1 KB
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
51
52
53
54
55
{
"author": "David Momenso",
"contributors": [
"Kerry Shetline"
],
"name": "node-dht-sensor",
"description": "Reads data from DHT sensors on Raspberry Pi",
"version": "0.5.5",
"repository": {
"url": "git+https://github.com/momenso/node-dht-sensor.git"
},
"engines": {
"node": ">=16"
},
"scripts": {
"install": "node-gyp configure",
"postinstall": "node-gyp build",
"test": "jest --runInBand",
"prepare": "husky"
},
"main": "./lib",
"files": [
"/src",
"/lib",
"/binding.gyp"
],
"dependencies": {
"node-addon-api": "^1.6.3"
},
"devDependencies": {
"husky": "^9.1.7",
"jest": "^29.7.0",
"prettier": "^3.8.3",
"pretty-quick": "^4.2.2"
},
"jest": {
"testEnvironment": "node"
},
"license": "LGPL-3.0",
"keywords": [
"DHT",
"DHT11",
"DHT22",
"AM2302",
"sensor",
"temperature",
"humidity",
"raspberry",
"raspberry pi",
"raspberry pi 5",
"rpi",
"libgpiod",
"gpiod"
]
}