forked from Nerixyz/mqtts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.04 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": "mqtts",
"version": "1.4.0",
"description": "MQTT client in Typescript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=14.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Nerixyz/mqtts"
},
"bugs": {
"url": "https://github.com/Nerixyz/mqtts/issues"
},
"scripts": {
"test": "jest",
"build": "rimraf dist && tsc -p tsconfig.build.json",
"prepare": "npm run build",
"lint": "eslint --fix --ext .js,.ts src/**",
"format": "prettier --write \"src/**/*.ts\" --loglevel warn",
"typecheck": "tsc -p tsconfig.build.json --noEmit",
"precommit": "npm run typecheck && npm run lint && npm run format"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"@types/ws": "^7.2.5",
"debug": "^4.1.1",
"eventemitter3": "^4.0.4",
"socks": "^2.5.0",
"ts-custom-error": "^3.1.1",
"ts-xor": "^1.0.8",
"ws": "^7.3.0"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/chai-as-promised": "^7.1.2",
"@types/debug": "^4.1.5",
"@types/duplexify": "^3.6.0",
"@types/jest": "^26.0.0",
"@types/node": "^14.14.35",
"@types/sinon": "^9.0.4",
"@typescript-eslint/eslint-plugin": "4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"duplexify": "^4.1.1",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"husky": "^5.2.0",
"jest": "^26.0.1",
"prettier": "^2.0.5",
"pretty-quick": "^3.1.0",
"rimraf": "^3.0.2",
"sinon": "^9.0.2",
"ts-jest": "^26.5.4",
"typescript": "^4.2.3"
},
"keywords": [
"MQTT",
"subscribe",
"iot",
"tls"
],
"author": "nerixyz",
"license": "MIT"
}