-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
68 lines (68 loc) · 1.69 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
{
"private": false,
"displayName": "Homebridge Awair2",
"name": "homebridge-awair2",
"version": "5.10.9",
"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 mint",
"awair omni",
"awair 2nd edition",
"awair element"
],
"author": "Douglas M. Blakeley",
"engines": {
"node": ">=14.18.1",
"homebridge": ">=1.3.5"
},
"license": "ISC",
"files": [
"LICENSE",
"README.md",
"CHANGELOG.md",
"dist/**/*",
"config.schema.json",
"package.json"
],
"repository": {
"type": "git",
"url": "git://github.com/DMBlakeley/homebridge-awair2.git"
},
"bugs": {
"url": "https://github.com/DMBlakeley/homebridge-awair2/issues"
},
"homepage": "https://github.com/DMBlakeley/homebridge-awair2#readme",
"devDependencies": {
"@types/node": "^20.1.0",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"eslint": "^8.5.0",
"follow-redirects": "^1.14.7",
"homebridge": "^1.1.3",
"minimist": "^1.2.7",
"nodemon": "^3.0.1",
"rimraf": "^5.0.0",
"ts-node": "^10.0.0",
"typescript": "^5.0.2"
},
"dependencies": {
"axios": "^1.2.2",
"minimist": "^1.2.7",
"optimist": "^0.5.2"
}
}