-
Notifications
You must be signed in to change notification settings - Fork 72
/
Copy pathpackage.json
executable file
·48 lines (48 loc) · 904 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
45
46
47
48
{
"author": "David Momenso",
"name": "node-dht-sensor",
"description": "Reads data from DHT sensors on Raspberry Pi",
"version": "0.4.3",
"repository": {
"url": "https://github.com/momenso/node-dht-sensor"
},
"scripts": {
"install": "node-gyp configure",
"postinstall": "node-gyp build",
"test": "mocha"
},
"main": "./lib",
"files": [
"/src",
"/lib",
"/binding.gyp"
],
"dependencies": {
"node-addon-api": "^1.6.3"
},
"devDependencies": {
"chai": "^4.2.0",
"husky": "^2.2.0",
"mocha": "^7.1.2",
"prettier": "1.17.0",
"pretty-quick": "^1.10.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"license": "LGPL-3.0",
"keywords": [
"DHT",
"DHT11",
"DHT22",
"AM2302",
"sensor",
"temperature",
"humidity",
"raspberry",
"raspberry pi",
"rpi"
]
}