-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 942 Bytes
/
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
{
"name": "mqtt-sensors",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"start": "npx ts-node src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"tasmota": "npx ts-node src/index.ts",
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run lint"
},
"author": "Benjamin Gniza",
"license": "ISC",
"devDependencies": {
"@types/mocha": "^2.2.43",
"@types/node": "^14.11.2",
"@types/winston": "^2.2.0",
"angular-tslint-rules": "^1.20.4",
"nodemon": "^1.19.4",
"tslint": "^5.20.1",
"typescript": "^4.0.3",
"gts": "^3.0.2"
},
"dependencies": {
"@types/lodash": "^4.14.161",
"lodash": "^4.17.20",
"mqtt": "^4.2.1",
"resol-vbus": "^0.21.0",
"rxjs": "^6.6.3",
"winston": "^3.3.3"
}
}