forked from SignalK/signalk-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.62 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.62 KB
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
{
"name": "signalk-server",
"version": "0.1.19",
"description": "An implementation of a [Signal K](http://signalk.github.io) server for boats.",
"main": "index.js",
"scripts": {
"start": "node ./index",
"test": "DEBUG=signalk*,provider* node ./index"
},
"bin": {
"signalk-server": "./bin/signalk-server"
},
"repository": {
"type": "git",
"url": "https://github.com/SignalK/signalk-server-node.git"
},
"bugs": {
"url": "https://github.com/SignalK/signalk-server-node/issues"
},
"keywords": [
"signalk",
"kjson",
"nmea",
"seatalk",
"gps",
"sailing",
"boat",
"marine",
"nautic"
],
"author": "Fabian Tollenaar <fabian@starting-point.nl>",
"contributors": [
{
"name": "Teppo Kurki",
"email": "teppo.kurki@iki.fi"
}
],
"license": "Apache 2",
"engines": {
"node": "v0.10.x"
},
"dependencies": {
"colors": "^0.6.2",
"cors": "^2.5.2",
"debug": "^2.1.0",
"deep-get-set": "^0.1.1",
"ejson": "^1.0.1",
"errorhandler": "^1.3.0",
"express": "^4.10.4",
"express-namespace": "^0.1.1",
"flatmap": "0.0.3",
"lodash": "^2.4.1",
"minimist": "^1.1.0",
"morgan": "^1.5.0",
"n2k-signalk": "signalk/n2k-signalk",
"nmea0183-signalk": "signalk/nmea0183-signalk",
"node-gpsd": "^0.2.1",
"node-uuid": "^1.4.3",
"primus": "^2.4.10",
"signalk-multiplexer": "signalk/signalk-multiplexer-node",
"stream-throttle": "^0.1.3",
"through": ">=2.2.7 <3",
"winston": "^1.0.0",
"ws": "^0.4.32"
},
"devDependencies": {
"find-free-port": "^1.0.1",
"mocha": "^2.1.0"
}
}