-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
84 lines (84 loc) · 2.08 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
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"displayName": "Homebridge Philips Air",
"name": "homebridge-philips-air",
"version": "3.5.2",
"description": "Homebridge Plugin for Philips Air Purifiers",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git://github.com/NikDevx/homebridge-philips-air.git"
},
"keywords": [
"homebridge-plugin",
"philips",
"air purifier"
],
"author": {
"name": "Nik_Dev",
"email": "[email protected]"
},
"license": "BSD-2-Clause",
"funding": [
{
"type": "kofi",
"url": "https://ko-fi.com/NikDevx"
},
{
"type": "paypal",
"url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=JF8XFPLT3MDEJ"
},
{
"type": "github",
"url": "https://github.com/NikDevx"
},
{
"type": "liberapay",
"url": "https://liberapay.com/NikDevx"
}
],
"bugs": {
"url": "https://github.com/NikDevx/homebridge-philips-air/issues"
},
"homepage": "https://github.com/NikDevx/homebridge-philips-air#readme",
"scripts": {
"clean": "rimraf ./dist ./coverage",
"build": "rimraf ./dist ./coverage && tsc",
"format": "markdownlint --fix *.md",
"lint": "eslint src/*.ts --fix",
"lint-check": "eslint src/*.ts",
"prepare": "npm run build",
"prepublishOnly": "npm run lint-check",
"postpublish": "npm run clean",
"watch": "npm run clean && tsc --watch"
},
"devDependencies": {
"@types/chmodr": "^1.0.0",
"@types/node": "^14.14.36",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.5.0",
"homebridge": "^1.3.4",
"markdownlint-cli": "^0.27.1",
"node-sessionstorage": "^1.0.0",
"rimraf": "^3.0.2",
"typescript": "^4.0.2"
},
"engines": {
"node": ">=10",
"homebridge": ">=1.0.0"
},
"files": [
"config.schema.json",
"dist/**/*",
"LICENSE",
"package.json",
"README.md",
"sensor"
],
"dependencies": {
"dns-packet": "^5.2.3",
"node-sessionstorage": "^1.0.0",
"philips-air": "^0.6.0",
"time-stamp": "^2.2.0"
}
}