-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.37 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
{
"name": "pages-extension",
"display_name": "Pages extension",
"version": "0.0.1",
"description": "Create and maintain dynamic Pages with different combinations of Things and groups of Things",
"author": "[email protected]",
"main": "index.js",
"scripts": {
"lint": "eslint ."
},
"keywords": [
"iot",
"extension",
"pages"
],
"homepage": "https://github.com/chas-iot/pages-extension",
"license": "MPL-2.0",
"repository": {
"type": "git",
"url": "https://github.com/chas-iot/pages-extension"
},
"bugs": {
"url": "https://github.com/chas-iot/pages-extension/issues"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.32.0"
},
"files": [
"LICENSE",
"README.md",
"SHA256SUMS",
"index.js",
"manifest.json",
"css/extension.css",
"images/drag-icon.svg",
"images/pages-icon.svg",
"images/group-icon.svg",
"js/extension.js",
"src/db.js",
"src/pages-adaptor.js",
"src/pages-api-handler.js",
"src/pages-db.js",
"views/content.html"
],
"moziot": {
"api": {
"min": 2,
"max": 2
},
"type": "extension",
"plugin": true,
"exec": "{nodeLoader} {path}"
}
}