-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.06 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
{
"name": "@borokero/borokero-http",
"version": "0.0.1-development",
"description": "http broker based on nodejs",
"homepage": "https://github.com/borokero/borokero-http#readme",
"repository": {
"type": "git",
"url": "https://github.com/borokero/borokero-http.git"
},
"main": "./lib/http.js",
"scripts": {
"version": "echo $npm_package_version",
"start": "node -r dotenv/config ./example.js",
"test": "mocha --exit test",
"clean-install": "sudo rm -rf node_modules && npm install"
},
"author": "Hadi Mahdavi",
"license": "ISC",
"keywords": [
"moscajs",
"aedes",
"authentication",
"authorization",
"mqtt",
"http",
"credintial",
"access token"
],
"dependencies": {
"@borokero/borokero-auth": "0.0.2-development",
"aedes": "0.46.0",
"callback-stream": "^1.1.0",
"concat-stream": "^2.0.0",
"corsify": "^2.1.0"
},
"devDependencies": {
"chai": "4.3.4",
"dotenv": "10.0.0",
"mocha": "9.0.0",
"supertest": "6.1.3"
},
"publishConfig": {
"access": "public"
}
}