-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.01 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
{
"name": "mqtt-usvc",
"version": "3.1.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rm -rf ./dist && tsc",
"prepare": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Den Williams",
"license": "MIT",
"description": "Module to make writing Node.js MQTT microservices dead simple and quick.",
"dependencies": {
"consul": "^0.40.0",
"js-yaml": "^4.1.0",
"mqtt": "^4.3.7"
},
"devDependencies": {
"@types/consul": "^0.40.0",
"@types/js-yaml": "^4.0.5",
"@types/node": "^14.18.21",
"@types/ws": "^8.5.3",
"prom-client": "^14.0.1",
"typescript": "^4.7.3"
},
"peerDependencies": {
"prom-client": "^14"
},
"repository": {
"type": "git",
"url": "git+https://github.com/denwilliams/mqtt-usvc.git"
},
"bugs": {
"url": "https://github.com/denwilliams/mqtt-usvc/issues"
},
"homepage": "https://github.com/denwilliams/mqtt-usvc#readme"
}