forked from ambelovsky/koa-socket-2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.01 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
{
"name": "@caff/koa-socket.io",
"version": "4.0.0",
"description": "Koa meets socket.io connected socket",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"LICENSE",
"package.json",
"README.md"
],
"scripts": {
"build": "run-s build:clean build:tsc",
"build:clean": "rm -rf dist",
"build:tsc": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint .",
"test": "jest $JEST_ARGS",
"prepublishOnly": "JEST_ARGS=--forceExit run-s format lint test build",
"example": "ts-node example/server"
},
"keywords": [
"koa",
"koa v2",
"koa2",
"koa version 2",
"socket.io",
"socket.io 2",
"socket io",
"socket io 2",
"web sockets",
"websockets",
"websocket",
"web socket"
],
"repository": "caffco/koa-socket.io",
"author": "Lluís Ulzurrun de Asanza i Sàez (Originally: Aaron Belovsky and Matt Styles)",
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"socket.io": "^4.4.1",
"koa-compose": "^4.1.0"
},
"devDependencies": {
"@changesets/cli": "^2.13.0",
"@types/cookie": "^1.0.0",
"@types/cors": "^2.8.10",
"@types/jest": "^27.0.0",
"@types/koa": "^2.11.6",
"@types/koa-compose": "^3.2.5",
"@types/node": "^15.0.0",
"@types/socket.io": "^3.0.2",
"@types/socket.io-client": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"eslint": "^7.18.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"husky": "^4.3.8",
"jest": "^26.6.3",
"jest-circus": "^27.0.1",
"koa": "^2.7.0",
"lint-staged": "^15.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"socket.io-client": "^4.0.0",
"ts-jest": "^26.4.4",
"ts-node": "^10.0.0",
"typescript": "^4.1.3"
}
}