-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.76 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "logs-to-mqtt-publisher",
"version": "1.2.1",
"description": "A server-side JavaScript tool that converts log statements to topics/messages and publishes them to a mqtt broker.",
"main": "./lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/TonyBrobston/logs-to-mqtt-publisher"
},
"scripts": {
"build": "rm -rf lib && tsc",
"coverage": "jest --coverage",
"documentation": "typedoc --readme none --theme markdown --plugin typedoc-plugin-markdown --hideGenerator",
"lint:ts": "tslint --fix -c tslint.json 'src/**/*.ts' 'tests/**/*.test.ts'",
"postversion": "git push && git push --tags",
"start": "node -e 'require(\"./lib/index.js\").start()'",
"test": "yarn lint:ts && yarn coverage",
"unit": "npx jest"
},
"keywords": [
"javascript",
"mqtt",
"broker",
"mqtt-broker",
"log",
"log-file",
"file",
"gif",
"png",
"server",
"server-side",
"server side",
"node"
],
"author": "Tony Brobston",
"license": "MIT",
"dependencies": {
"@types/node": "^13.5.0",
"async-mqtt": "^2.4.2",
"chokidar": "^3.3.1",
"jsonfile": "^5.0.0",
"read-last-lines": "^1.7.1",
"typescript": "^3.6.2"
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@types/chance": "^1.0.6",
"@types/jest": "^25.1.2",
"@types/mosca": "^2.8.2",
"chance": "^1.0.18",
"commitlint": "^8.2.0",
"husky": "^4.2.1",
"jest": "^24.9.0",
"mosca": "^2.8.3",
"ts-jest": "^24.3.0",
"ts-node": "^8.3.0",
"tslint": "^5.19.0",
"typedoc": "^0.16.9",
"typedoc-plugin-markdown": "^2.2.16"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}