-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 852 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
{
"name": "fastify-mqtt",
"version": "1.0.0",
"description": "Fastify MQTT plugin",
"main": "index.js",
"scripts": {
"coverage": "npm run unit -- --cov --coverage-report=html",
"lint": "standard",
"test": "npm run lint && npm run unit",
"unit": "tap test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/love-lena/fastify-mqtt.git"
},
"keywords": [
"fastify",
"mqtt"
],
"author": "Lena Hickson Long <[email protected]> (http://lena.dev)",
"license": "MIT",
"bugs": {
"url": "https://github.com/love-lena/fastify-mqtt/issues"
},
"homepage": "https://github.com/love-lena/fastify-mqtt#readme",
"devDependencies": {
"fastify": "^3.0.0",
"standard": "^16.0.0",
"tap": "^15.0.0"
},
"dependencies": {
"fastify-plugin": "^3.0.0",
"mqtt": "^4.3.6"
}
}