-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
88 lines (88 loc) · 2.27 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
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "aedes-protocol-decoder",
"version": "2.2.0",
"description": "Aedes plugin to decode connection frame and validate proxies",
"main": "index.js",
"types": "types/index.d.ts",
"scripts": {
"lint": "npm run lint:standard && npm run lint:typescript",
"lint:standard": "standard --verbose | snazzy",
"lint:typescript": "standard --parser @typescript-eslint/parser --plugin @typescript-eslint/eslint-plugin types/**/*.d.ts",
"unit": "tape test/test.js | faucet",
"test": "npm run lint && npm run unit",
"coverage": "nyc --reporter=lcov tape test/test.js",
"test:ci": "npm run lint && npm run coverage",
"license-checker": "license-checker --production --onlyAllow='MIT;ISC;BSD-3-Clause;BSD-2-Clause'",
"release": "read -p 'GITHUB_TOKEN: ' GITHUB_TOKEN && export GITHUB_TOKEN=$GITHUB_TOKEN && release-it"
},
"pre-commit": [
"test"
],
"repository": {
"type": "git",
"url": "https://github.com/moscajs/aedes-protocol-decoder.git"
},
"bugs": {
"url": "http://github.com/moscajs/aedes-protocol-decoder/issues"
},
"engines": {
"node": ">=10"
},
"release-it": {
"github": {
"release": true
},
"git": {
"tagName": "v${version}"
},
"hooks": {
"before:init": [
"npm run test"
]
},
"npm": {
"publish": true
}
},
"keywords": [
"mqtt",
"proxy",
"protocol",
"decoder",
"parser"
],
"author": "Edouard Maleix <https://github.com/getlarge>",
"contributors": [
{
"name": "Edouard Maleix",
"url": "https://github.com/getlarge"
},
{
"name": "Daniel Lando",
"url": "https://github.com/robertsLando"
}
],
"license": "MIT",
"devDependencies": {
"@types/node": "^18.17.0",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"aedes": "^0.50.0",
"aedes-server-factory": "0.2.1",
"faucet": "0.0.4",
"license-checker": "^25.0.1",
"mqtt": "^5.0.5",
"mqtt-packet": "^8.2.0",
"nyc": "^15.1.0",
"pre-commit": "^1.2.2",
"release-it": "^16.1.5",
"snazzy": "^9.0.0",
"standard": "^17.1.0",
"tape": "^5.6.6",
"typescript": "^5.2.2"
},
"dependencies": {
"forwarded": "^0.2.0",
"proxy-protocol-js": "^4.0.6"
}
}