-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
114 lines (114 loc) · 2.43 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "mydomoathome",
"description": "Imperihome ISS API gateway to Domoticz",
"version": "0.3.7",
"dependencies": {
"basic-auth": "1.1.0",
"body-parser": "^1.20.2",
"cors": "^2.7.1",
"ejs": "^3.1.9",
"errorhandler": "^1.1.1",
"express": "^4.18.2",
"express-session": "^1.17.3",
"forever": "^4.0.3",
"glob-parent": ">=5.1.2",
"is-base64": "0.1.0",
"method-override": "^3.0.0",
"minimatch": ">=5.1.6",
"minimist": ">=1.2.6",
"moment": "^2.29.4",
"morgan": "^1.9.1",
"multer": "^1.4.4",
"nconf": "^0.12.1",
"node-gyp": "^10.0.1",
"request": "^2.82.0",
"sync-request": "3.0.1",
"underscore": "1.13.6",
"winston": "^3.11.0"
},
"devDependencies": {
"assert": "^1.3.0",
"chai": "^3.0.0",
"jshint": "^2.12.0",
"json-loader": "^0.5.4",
"should": "^6.0.3",
"standard-version": "^9.3.2",
"superagent": ">=3.8.1",
"webpack": "^5.36.2",
"xunit-file": "0.0.6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/empierre/MyDomoAtHome.git"
},
"directories": {
"test": "test"
},
"author": "Emmanuel PIERRE",
"contributors": [
"Emmanuel PIERRE <[email protected]>",
"jonferreira"
],
"license": "GPL-2.0",
"bugs": {
"url": "https://github.com/empierre/MyDomoAtHome/issues"
},
"homepage": "https://github.com/empierre/MyDomoAtHome#readme",
"main": "mdah.js",
"scripts": {
"test": "grunt",
"release": "standard-version",
"start": "nodejs mdah.js"
},
"node_deb": {
"start_command": "nodejs mdah.js"
},
"keywords": [
"Imperihome",
"Domoticz",
"ISS API",
"DSM",
"IoT",
"Synology"
],
"jshintConfig": {
"node": true,
"undef": true,
"noarg": true,
"white": true,
"esnext": true,
"strict": true,
"newcap": true,
"nonbsp": true,
"eqeqeq": true,
"unused": true,
"maxlen": 80,
"indent": 2,
"bitwise": true,
"noempty": true,
"latedef": "nofunc",
"maxdepth": 5,
"quotmark": "single",
"trailing": true,
"camelcase": true,
"maxparams": 8,
"globalstrict": true,
"maxcomplexity": 10,
"maxstatements": 40,
"predef": [
"ApiError",
"ActErr",
"logger",
"util",
"sendErrorAndLog",
"shipError",
"sendJSONResponse",
"config",
"MessageTypes",
"safeGet"
]
},
"bin": {
"mydomoathome": "bin/mydomoathome"
}
}