-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 865 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 865 Bytes
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
{
"name": "knx-controller",
"version": "0.0.1",
"author": "Marco Piraccini <marco.piraccini@gmail.com>",
"description": "Knx Home Controllers based on node-eibd",
"scripts": {
"mocha": "mocha ./test",
"test": "npm run-script mocha && npm run-script jshint",
"jshint": "node_modules/jshint/bin/jshint lib *.js",
"start": "node main.js | node_modules/.bin/bunyan"
},
"main": "main.js",
"dependencies": {
"async": "^1.4.2",
"bunyan": "^1.2.3",
"debug": "^2.1.1",
"eibd": "^0.3.2",
"good": "^6.4.0",
"good-console": "^5.1.0",
"hapi": "^10.2.0",
"inert": "^3.0.2",
"influx": "^4.0.1",
"lodash": "^3.10.1",
"moment": "^2.10.6",
"socket.io": "^1.3.6"
},
"private": true,
"license": "MIT",
"devDependencies": {
"chai": "^3.3.0",
"jshint": "^2.8.0",
"mocha": "^2.3.3"
}
}