-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
75 lines (75 loc) · 1.84 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
68
69
70
71
72
73
74
75
{
"name": "comelit-client",
"version": "2.5.3",
"author": "Pierpaolo Follia",
"repository": {
"type": "git",
"url": "https://github.com/madchicken/comelit-client"
},
"description": "Comelit HUB CLI interface",
"license": "Apache-2.0",
"keywords": [
"comelit",
"cli",
"hub",
"serial bus",
"vedo"
],
"engines": {
"node": ">11.10.0"
},
"main": "dist/index.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"scripts": {
"build": "yarn clean && yarn build:ts && yarn lint",
"build:ts": "tsc",
"watch:ts": "tsc -w",
"lint": "eslint \"src/*.{js,ts}\" --quiet --fix",
"prettier": "prettier --single-quote --trailing-comma es5 --write \"{src/,__{tests,mocks}__}/**/*.ts\"",
"test": "jest",
"clean": "rimraf dist/"
},
"dependencies": {
"async-mqtt": "2.6.1",
"atob": "2.1.2",
"axios": "0.21.2",
"chalk": "3.0.0",
"lodash": "4.17.21",
"log4js": "6.4.5",
"mqtt": "4.2.8",
"mqtt-packet": "6.6.0",
"promise-socket": "^7.0.0",
"querystring": "0.2.0",
"typescript": "^4.5.4",
"yamljs": "^0.3.0",
"yargs": "15.4.1"
},
"bin": {
"comelit": "./dist/bin/comelit-cli.js",
"comelit-sb": "./dist/bin/comelit-sb-cli.js",
"vedo": "./dist/bin/vedo-cli.js",
"icona": "./dist/bin/icona-cli.js"
},
"devDependencies": {
"@types/axios": "0.14.0",
"@types/chalk": "2.2.0",
"@types/jest": "25.1.4",
"@types/lodash": "4.14.157",
"@types/mqtt": "2.5.0",
"@types/nock": "11.1.0",
"@types/node": "12.12.6",
"@types/yargs": "15.0.5",
"@typescript-eslint/eslint-plugin": "2.14.0",
"@typescript-eslint/parser": "2.14.0",
"eslint": "7.5.0",
"eslint-config-prettier": "6.11.0",
"jest": "25.1.0",
"nock": "12.0.2",
"prettier": "2.0.5",
"rimraf": "3.0.2",
"ts-jest": "^25.5.1"
}
}