-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
65 lines (65 loc) · 1.88 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
{
"name": "socket.io-amqp0",
"version": "7.0.2",
"description": "socket.io adapter for amqp 0.9.1+ (e.g. RabbitMQ)",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"test": "test",
"lib": "lib"
},
"engines": {
"node": ">=4.0"
},
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"test": "vitest --coverage",
"test:ci": "vitest run --reporter=junit --outputFile=reports/junit/test-results/junit.xml --coverage",
"lint": "pnpm exec concurrently -i -n \"npm:lint:eslint\" \"npm:lint:prettier\"",
"lint:eslint": "pnpm exec eslint . --ext .ts --cache",
"lint:prettier": "pnpm exec prettier --check .",
"lint:prettier:fix": "pnpm exec prettier -w .",
"build": "tsc"
},
"dependencies": {
"amqplib": "0.10.4",
"debug": "^4.3.4",
"socket.io-adapter": "^2.5.2",
"tslib": "^2.6.2",
"rxjs": "^7.8.1"
},
"repository": {
"type": "git",
"url": "https://github.com/thinkalpha/socket.io-amqp0"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@types/amqplib": "^0.10.4",
"@types/debug": "^4.1.7",
"@types/node": "^20.10.4",
"concurrently": "^7.4.0",
"eslint": "7.x",
"eslint-plugin-jest": "24.x",
"eslint-plugin-node": "11.x",
"get-port": "5.x",
"mocha": "4.x",
"prettier": "^3.1.1",
"socket.io": "^4.7.2",
"socket.io-client": "^4.7.2",
"vitest": "^1.0.4",
"typescript": "~5.5.3",
"@vitest/coverage-v8": "^1.0.4"
},
"authors": [
"David Pfeffer",
"ThinkAlpha Technologies LLC"
],
"license": "ISC",
"packageManager": "[email protected]"
}