-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1001 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
{
"name": "enqueuer-plugin-mqtt",
"version": "1.0.1",
"description": "Enqueuer mqtt plugin",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"all": "npm run clean && npm run lint && npm run build",
"build": "tsc",
"clean": "rm -rf dist",
"lint": "node_modules/.bin/tslint --project tsconfig.json",
"prepublishOnly": "npm run all"
},
"repository": {
"type": "git",
"url": "git+https://github.com/enqueuer-land/enqueuer-plugin-mqtt.git"
},
"keywords": [
"enqueuer",
"nqr",
"mqtt",
"plugin"
],
"author": "Virgs",
"license": "MIT",
"bugs": {
"url": "https://github.com/enqueuer-land/enqueuer-plugin-mqtt/issues"
},
"homepage": "https://github.com/enqueuer-land/enqueuer-plugin-mqtt#readme",
"devDependencies": {
"@types/node": "^11.13.15",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"typescript": "^3.5.2"
},
"dependencies": {
"async-mqtt": "^2.3.0",
"enqueuer": "^6.0.0"
}
}