-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.3 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": "mqtt-stress",
"version": "1.0.2",
"description": "CLI Tool for sending a lot of messages over mqtt for stress testing services",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"bin": {
"mqtt-stress": "./lib/cli.js"
},
"scripts": {
"serve": "tsc -w",
"build": "rimraf lib && tsc",
"lint": "tslint src",
"test": "echo \"Error: no test specified\" && exit 1",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/Joge97/mqtt-stress.git"
},
"keywords": [
"mqtt",
"stress",
"test"
],
"author": "Joge <[email protected]> (https://application-studios.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Joge97/mqtt-stress/issues"
},
"homepage": "https://github.com/Joge97/mqtt-stress#readme",
"devDependencies": {
"conventional-changelog-cli": "2.0.11",
"rimraf": "2.6.3",
"tslint": "5.12.0",
"typescript": "3.2.2"
},
"dependencies": {
"@types/node": "^10.12.18",
"async-mqtt": "^2.0.0",
"commander": "^2.19.0"
}
}