-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
65 lines (65 loc) · 1.72 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
{
"name": "node-acp",
"description": "A Node.js implementation of the management protocol of Apple's AirPort devices.",
"author": {
"name": "Samuel Elliott"
},
"version": "0.7.0",
"license": "MIT",
"homepage": "https://gitlab.fancy.org.uk/samuel/node-acp",
"bugs": "https://gitlab.fancy.org.uk/samuel/node-acp/issues",
"repository": {
"type": "git",
"url": "https://gitlab.fancy.org.uk/samuel/node-acp.git"
},
"engines": {
"node": ">=12"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"acp": "bin/acp",
"airport-firmware": "bin/airport-firmware"
},
"files": [
"dist/index.js",
"dist/index.d.ts",
"dist/lib",
"dist/types",
"dist/cli",
"bin",
"resources"
],
"scripts": {
"test": "qunit dist/test/**.js"
},
"dependencies": {
"adler32": "^0.1.7",
"bplist-creator": "^0.0.8",
"bplist-parser": "^0.2.0",
"fast-srp-hap": "^1.0.1",
"ip6addr": "^0.2.3",
"node-persist": "^3.0.5",
"pump": "^3.0.0",
"read": "^1.0.7",
"yargs": "^15.3.1"
},
"peerDependencies": {
"mdns": "^2.5.1"
},
"devDependencies": {
"@types/mdns": "^0.0.33",
"@types/node": "^12.12.35",
"@types/node-persist": "^3.0.0",
"@types/pump": "^1.1.0",
"@types/qunit": "^2.9.1",
"@types/read": "^0.0.28",
"@types/yargs": "^15.0.4",
"@typescript-eslint/parser": "^2.27.0",
"eslint": "^6.8.0",
"eslint-config-google": "^0.14.0",
"mdns": "^2.5.1",
"qunit": "^2.9.3",
"typescript": "^3.8.3"
}
}