-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
44 lines (44 loc) · 1.24 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
{
"name": "homebridge-wol",
"displayName": "Homebridge WoL",
"version": "6.0.1",
"description": "A Wake on Lan plugin for Homebridge",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"lint": "tsc --noEmit && eslint \"src/**/*.{js,ts}\" --quiet --fix",
"test": "rm -rf integration/homebridge-wol/accessories integration/homebridge-wol/persist && cd integration/homebridge-wol && npm install && npm exec homebridge --insecure --plugin-path node_modules --user-storage-path ./ | tee log.txt"
},
"keywords": [
"homebridge-plugin",
"wake on lan",
"home automation",
"wol",
"automation"
],
"repository": {
"type": "git",
"url": "git://github.com/alexgustafsson/homebridge-wol.git"
},
"author": "Alex Gustafsson",
"contributors": [],
"license": "MIT",
"engines": {
"node": ">=10.0.0",
"homebridge": ">=1.0.0"
},
"dependencies": {
"ping": "^0.4.4",
"wake_on_lan": "^1.0.0"
},
"devDependencies": {
"@types/node": "^20.11.6",
"@types/ping": "^0.4.4",
"@types/wake_on_lan": "^0.0.33",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"eslint": "^8.56.0",
"homebridge": "^1.7.0",
"typescript": "^5.3.3"
}
}