-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
41 lines (41 loc) · 841 Bytes
/
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
{
"name": "mqttsn-packet",
"version": "0.0.3",
"description": "Parse and generate MQTT-SN packets",
"main": "mqttsn.js",
"scripts": {
"test": "tape test.js | tap-dot"
},
"pre-commit": "test",
"repository": {
"type": "git",
"url": "https://github.com/ithinuel/mqttsn-packet.git"
},
"keywords": [
"MQTT",
"MQTTSN",
"packet",
"parse",
"publish",
"subscribe",
"pubsub",
"udp",
"sensor",
"network"
],
"author": "Wilfried Chauveau",
"license": "MIT",
"bugs": {
"url": "https://github.com/ithinuel/mqttsn-packet/issues"
},
"homepage": "https://github.com/ithinuel/mqttsn-packet",
"devDependencies": {
"pre-commit": "^1.1.2",
"readable-stream": "^2.0.4",
"tap-dot": "^2.0.0",
"tape": "^4.2.2"
},
"dependencies": {
"bl": "^4.0.0"
}
}