-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.41 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
{
"name": "socket.io-sqs",
"version": "2.0.0-dev.2",
"description": "A socket.io adapter for SQS/SNS",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"test": "npx jest --coverage --forceExit",
"lint": "npx eslint . --ext .ts --cache",
"build": "npx tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thinkalpha/socket.io-sqs.git"
},
"author": "ThinkAlpha Technologies LLC",
"license": "ISC",
"bugs": {
"url": "https://github.com/thinkalpha/socket.io-sqs/issues"
},
"homepage": "https://github.com/thinkalpha/socket.io-sqs#readme",
"devDependencies": {
"@types/cookie": "^0.4.0",
"@types/cors": "^2.8.8",
"@types/debug": "^4.1.5",
"@types/get-port": "^4.2.0",
"@types/jest": "^26.0.15",
"@types/node": "^14.14.7",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"eslint": "^7.13.0",
"get-port": "^5.1.1",
"jest": "^26.6.3",
"jest-junit": "^12.0.0",
"socket.io": "^3.0.1",
"socket.io-client": "^3.0.1",
"source-map-support": "^0.5.19",
"ts-jest": "^26.4.4",
"typescript": "^4.0.5"
},
"dependencies": {
"@aws-sdk/client-sns": "^1.0.0-rc.5",
"@aws-sdk/client-sqs": "^1.0.0-rc.5",
"@aws-sdk/node-config-provider": "^1.0.0-rc.5",
"debug": "^4.2.0",
"node-abort-controller": "^1.1.0",
"socket.io-adapter": "^2.0.3"
}
}