-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.14 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
{
"name": "hermes",
"version": "1.0.0",
"description": "Fully Scalable MQTT broker",
"main": "mosca_server.ts",
"scripts": {
"start": "babel-node --extensions '.ts,.tsx' mosca_server.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": "git+https://github.com/Gctucci/hermes.git",
"keywords": [
"nodejs",
"mqtt",
"mosca",
"iot",
"docker",
"auth0"
],
"author": "Gabriel Natucci",
"license": "MIT",
"bugs": {
"url": "https://github.com/Gctucci/hermes/issues"
},
"homepage": "https://github.com/Gctucci/hermes#readme",
"private": false,
"devDependencies": {
"@babel/core": "^7.0.0-beta.51",
"@babel/preset-env": "^7.0.0-beta.51",
"@babel/preset-stage-3": "^7.0.0-beta.51",
"@babel/preset-typescript": "^7.0.0-beta.51",
"@types/jsonwebtoken": "^7.2.7",
"@types/mosca": "^2.8.0",
"@types/request": "^2.47.1",
"@types/request-promise": "^4.1.41",
"babel-core": "^6.26.3"
},
"dependencies": {
"@babel/node": "^7.0.0-beta.51",
"jsonwebtoken": "^8.3.0",
"mosca": "^2.8.2",
"request": "^2.87.0",
"request-promise": "^4.2.2"
}
}