This repository was archived by the owner on Nov 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.29 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.29 KB
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
{
"name": "pimatic-hap",
"description": "Pimatic plugin for creating Homekit Accessories from existing pimatic devices",
"author": "Michael Kotten <michaelkotten@gmail.com> (https://github.com/michbeck100/pimatic-hap)",
"main": "hap.coffee",
"files": [
"accessories",
"app",
"test",
"hap.coffee",
"README.md",
"hap-config-schema.coffee",
"LICENSE"
],
"version": "0.14.0",
"homepage": "https://github.com/michbeck100/pimatic-hap",
"private": false,
"repository": {
"type": "git",
"url": "git://github.com/michbeck100/pimatic-hap.git"
},
"configSchema": "hap-config-schema.coffee",
"scripts": {
"test": "grunt test"
},
"dependencies": {
"canvas": "^2.6.1",
"coffeescript": "^2.5.1",
"color-convert": "1.0.0",
"hap-nodejs": "^0.8.2",
"lodash": "^4.17.19",
"qrcode-svg": "^1.1.0"
},
"devDependencies": {
"blanket": "^1.2.2",
"bluebird": "^3.3.4",
"coffee-errors": "^0.8.6",
"coffee-script": "^1.10.0",
"grunt": "^1.3.0",
"grunt-cli": "^0.1.13",
"grunt-coffeelint": "0.0.8",
"grunt-mocha-test": "^0.12.7",
"mocha": "^2.4.5",
"chai": "3.5.0",
"pimatic": "^0.9.0"
},
"peerDependencies": {
"pimatic": "~0.9.0"
},
"engines": {
"node": ">=8.0.0",
"npm": ">=2.15.0"
}
}