-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.35 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
50
51
52
53
{
"name": "@borokero/borokero-auth",
"version": "0.0.2-development",
"description": "Authentication and Authorization module of HTTP/MQTT/CoAP Brokers based on NodeJS for IoT or Internet of Things.",
"main": "lib/authbroker.js",
"scripts": {
"pretest": "bash ./scripts/start-server.sh",
"test": "mocha --exit --recursive --bail --reporter spec tests",
"start": "node ./example/broker",
"startmon": "DEBUG=* nodemon ./example/broker",
"clean-install": "sudo rm -rf node_modules && npm install"
},
"repository": {
"type": "git",
"url": "https://github.com/borokero/borokero-auth"
},
"keywords": [
"moscajs",
"aedes",
"authentication",
"authorization",
"mqtt",
"http",
"credintial",
"access token"
],
"author": "Hadi Mahdavi",
"email": "kamerdack@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/borokero/borokero-auth/issues"
},
"dependencies": {
"debug": "4.1.1",
"jsonwebtoken": "8.5.1",
"keycloak-connect": "13.0.1",
"qlobber": "3.1.0",
"request": "2.88.0"
},
"devDependencies": {
"@authbroker/mongo-benchmark": "0.0.9",
"aedes": "0.46.0",
"chai": "4.2.0",
"expect.js": "^0.3.1",
"mocha": "6.2.0",
"mqtt": "^3.0.0",
"ponte": "0.0.16",
"supertest": "4.0.2"
},
"publishConfig": {
"access": "public"
}
}