-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
37 lines (37 loc) · 921 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
{
"name": "mqtt-connect",
"version": "1.0.1",
"description": "MQTT high level framework to glue together various middleware to handle incoming messages",
"main": "index.js",
"scripts": {
"test": "tape ./tests/**/*.js | node_modules/.bin/tap-spec && standard && nsp check"
},
"repository": {
"type": "git",
"url": "git+https://github.com/roccomuso/mqtt-connect.git"
},
"keywords": [
"mqtt",
"middleware",
"connect",
"messages",
"plugins"
],
"author": "Rocco Musolino",
"license": "ISC",
"bugs": {
"url": "https://github.com/roccomuso/mqtt-connect/issues"
},
"homepage": "https://github.com/roccomuso/mqtt-connect#readme",
"devDependencies": {
"nsp": "^2.6.3",
"standard": "^10.0.2",
"tap-spec": "^4.1.1",
"tape": "^4.6.3"
},
"dependencies": {
"async-each-series": "^1.1.0",
"debug": "^2.6.4",
"mqtt-match": "^1.0.2"
}
}