forked from DMBlakeley/homebridge-awair2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.73 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"private": false,
"displayName": "Homebridge Awair2",
"name": "homebridge-awair2",
"version": "5.9.8",
"description": "HomeKit integration of Awair air quality monitor as Dynamic Platform.",
"main": "dist/index.js",
"scripts": {
"lint": "eslint src/**.ts",
"watch": "npm run build && npm link && nodemon",
"build": "rimraf ./dist && tsc",
"prepublishOnly": "npm run lint && npm run build",
"clean": "rimraf ./dist",
"postpublish": "npm run clean"
},
"keywords": [
"homebridge",
"homebridge-plugin",
"air quality sensor",
"temperature sensor",
"humidity sensor",
"carbon dioxide sensor",
"awair",
"awair glow",
"awair glow-c",
"awair mint",
"awair omni",
"awair 2nd edition",
"awair element"
],
"author": "Douglas M. Blakeley",
"engines": {
"node": ">=10.17.0",
"homebridge": ">0.4.53"
},
"license": "ISC",
"files": [
"LICENSE",
"README.md",
"CHANGELOG.md",
"index.js",
"config.schema.json",
"package.json"
],
"repository": {
"type": "git",
"url": "git://github.com/moosoy/homebridge-awair2.git"
},
"bugs": {
"url": "https://github.com/moosoy/homebridge-awair2/issues"
},
"homepage": "https://github.com/moosoy/homebridge-awair2#readme",
"devDependencies": {
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"eslint": "^8.5.0",
"follow-redirects": "^1.14.7",
"homebridge": "^1.1.3",
"minimist": ">=1.2.6",
"nodemon": "^2.0.4",
"rimraf": "^3.0.2",
"ts-node": "^10.0.0",
"typescript": "^4.0.2"
},
"dependencies": {
"axios": "^0.27.2",
"minimist": ">=1.2.6",
"optimist": "^0.6.1"
}
}