-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
39 lines (39 loc) · 1.01 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
{
"name": "fhem.js",
"version": "3.2.2",
"description": "This is a node.js server for fhem (home automation). It allows clients connecting to fhem by websockets. ",
"main": "server.js",
"engines": { "node": ">=4.0.0" },
"os": ["linux"],
"dependencies": {
"forever": "latest",
"socket.io": "latest",
"socketio-auth": "latest"
},
"bin": {
"fhem.js": "./bin/fhem.js",
"forever": "./node_modules/forever/bin/forever"
},
"scripts": {
"start": "node server.js",
"postinstall": "./bin/postinstall.sh"
},
"repository": {
"type": "git",
"url": "https://github.com/winne27/fhem.js.git"
},
"keywords": [
"fhem",
"node.js",
"websockets"
],
"author": {
"name": "Werner Schäffer",
"email": "[email protected]",
"url": "https://wernerschaeffer.de"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/winne27/fhem.js/issues"
}
}