-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.66 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": "mqtt-ssl",
"version": "1.0.0",
"description": "Mosca based mqtt ssl test",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "babel-node --extensions \".ts\" src/server.ts",
"websocket": "babel-node --extensions \".ts\" src/websocket.ts",
"pub": "babel-node --extensions \".ts\" src/publisher.ts",
"sub": "babel-node --extensions \".ts\" src/subscriber.ts",
"keygen": "babel-node --extensions \".ts\" src/keygen.ts",
"keygen:ca": "babel-node --extensions \".ts\" src/keygen.ts ca",
"keygen:server": "babel-node --extensions \".ts\" src/keygen.ts server",
"keygen:client": "babel-node --extensions \".ts\" src/keygen.ts client",
"keygen:verify": "babel-node --extensions \".ts\" src/keygen.ts verify",
"tsc": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/salgum1114/mqtt-ssl.git"
},
"keywords": [
"mqtt",
"ssl",
"tls",
"mosca"
],
"author": "salgum1114",
"license": "MIT",
"bugs": {
"url": "https://github.com/salgum1114/mqtt-ssl/issues"
},
"homepage": "https://github.com/salgum1114/mqtt-ssl#readme",
"dependencies": {
"mosca": "^2.8.3",
"mqtt": "^2.18.8",
"ws": "^7.0.0"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/node": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-typescript": "^7.3.3",
"@types/mosca": "^2.8.1",
"@types/mqtt": "^2.5.0",
"@types/node": "^12.0.2",
"@types/ws": "^6.0.1"
}
}