-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
49 lines (49 loc) · 1.27 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
{
"name": "aquila-gateway",
"version": "0.7.0",
"description": "MQTT-SN Gateway (Serial MQTT-SN to MQTT bridge)",
"main": "index.js",
"scripts": {
"build": "gulp",
"start": "node aquila-gateway.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Rodrigo Méndez <[email protected]>",
"license": "MIT",
"dependencies": {
"async": "^2.3.0",
"bunyan": "^1.8.10",
"commander": "^2.9.0",
"lokijs": "^1.4.3",
"mqtt": "^2.6.2",
"mqttsn-packet": "git+https://github.com/Rodmg/mqttsn-packet.git",
"node-slip": "git+https://github.com/Rodmg/node-slip.git",
"serialport": "^4.0.7"
},
"devDependencies": {
"@types/async": "^2.0.40",
"@types/bunyan": "0.0.36",
"@types/commander": "^2.9.0",
"@types/lokijs": "^1.2.30",
"@types/mqtt": "0.0.34",
"@types/node": "^7.0.13",
"@types/serialport": "^4.0.9",
"del": "^2.2.2",
"gulp": "^3.9.1",
"gulp-sourcemaps": "^2.6.0",
"gulp-typescript": "^3.1.6",
"suspend": "^0.7.0",
"typescript": "^2.2.2"
},
"repository": {
"type": "git",
"url": "https://github.com/Rodmg/aquila-mqtt-sn-gateway"
},
"engines": {
"node": ">=6.5.0"
},
"preferGlobal": "true",
"bin": {
"aquila-gateway": "aquila-gateway.js"
}
}