-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 1.07 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
{
"name": "homebridge-esp8266-dht-sensor",
"version": "1.0.3",
"description": "Allows homebridge to get ESP8266 DHT22 Sensor",
"main": "./build/index.js",
"scripts": {
"build": "./node_modules/.bin/babel src -d build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MoonJuhan/homebridge-esp8266-dht22.git"
},
"author": "MoonJuhan",
"license": "ISC",
"keywords": [
"homebridge-plugin"
],
"engines": {
"node": ">=10.17.0",
"homebridge": ">=0.4.8"
},
"bugs": {
"url": "https://github.com/MoonJuhan/homebridge-esp8266-dht-sensor/issues"
},
"homepage": "https://github.com/MoonJuhan/homebridge-esp8266-dht-sensor#readme",
"dependencies": {
"@babel/runtime": "^7.14.8",
"axios": "^0.21.1",
"googleapis": "^82.0.0",
"readline": "^1.3.0"
},
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.14.8",
"@babel/node": "^7.14.7",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.14.8",
"babel-loader": "^8.2.2"
}
}