-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
65 lines (65 loc) · 1.35 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": "macrozilla",
"display_name": "Macros",
"version": "0.1.13",
"description": "Use macros to create advanced rules",
"author": "bewee",
"main": "index.js",
"scripts": {
"lint": "eslint ."
},
"keywords": [
"mozilla",
"iot",
"adapter",
"rule",
"macro"
],
"homepage": "https://github.com/bewee/macrozilla",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/bewee/macrozilla.git"
},
"bugs": {
"url": "https://github.com/bewee/macrozilla/issues"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1"
},
"files": [
"LICENSE.md",
"README.md",
"SHA256SUMS",
"index.js",
"manifest.json",
"lib/",
"static/",
"classes/"
],
"moziot": {
"api": {
"min": 2,
"max": 2
},
"type": "adapter",
"plugin": true,
"exec": "{nodeLoader} {path}"
},
"dependencies": {
"@babel/types": "^7.11.0",
"json-schema-defaults": "^0.4.0",
"jsonschema": "^1.2.6",
"node-cron": "^2.0.3",
"sqlite3": "^5.0.0",
"suncalc": "^1.8.0",
"websocket": "^1.0.31",
"webthings-client": "^4.0.0"
}
}