-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.29 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
42
43
44
45
46
47
48
49
{
"name": "feathers-transport-mqtt",
"version": "0.1.0-beta.1",
"description": "FeathersJS MQTT transport",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"pre-debug": "./pre-debug.sh",
"test": "npm run build && node tests/transport-mqtt.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/scottpageindysoft/feathers-transport-mqtt.git"
},
"keywords": [
"feathers",
"feathers-plugin",
"mqtt",
"transport"
],
"author": {
"name": "Scott Page"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/scottpageindysoft/feathers-transport-mqtt/issues"
},
"homepage": "https://github.com/scottpageindysoft/feathers-transport-mqtt#readme",
"dependencies": {
"@feathersjs/errors": "^4.5.11",
"@feathersjs/transport-commons": "^4.5.11",
"aedes": "^0.44.2",
"async-mqtt": "^2.6.1",
"debug": "^4.3.1"
},
"devDependencies": {
"@feathersjs/commons": "^4.5.11",
"@feathersjs/express": "^4.5.11",
"@feathersjs/feathers": "^4.5.11",
"@types/debug": "^4.1.5",
"@types/mocha": "^8.2.1",
"@types/node": "^14.14.31",
"@types/socket.io": "^2.1.13",
"feathers-memory": "^4.1.0",
"mocha": "^8.3.0",
"typescript": "^4.3.0-dev.20210228"
}
}