-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.25 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
{
"name": "@zimtsui/koa-ws-filter",
"version": "0.0.5",
"description": "",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"engines": {
"node": ">=16"
},
"scripts": {
"test": "tsc -b ./test/src/tsconfig.json && ava",
"build": "tsc -b ./src/tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zimtsui/koa-ws-filter.git"
},
"author": "Zim",
"license": "SEE LICENSE IN ./LICENSE",
"bugs": {
"url": "https://github.com/zimtsui/koa-ws-filter/issues"
},
"homepage": "https://github.com/zimtsui/koa-ws-filter#readme",
"devDependencies": {
"@koa/router": "^10.0.0",
"@types/bluebird": "^3.5.32",
"@types/chai": "^4.2.3",
"@types/chai-as-promised": "^7.1.2",
"@types/koa__router": "^8.0.3",
"ava": "^4.3.0",
"axios": "^0.21.2",
"bluebird": "^3.7.2",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1"
},
"dependencies": {
"@types/koa-compose": "^3.2.4",
"@types/node": "^16.11.38",
"@types/ws": "^8.5.4",
"koa-compose": "^4.1.0"
},
"peerDependencies": {
"koa": "^2.8.2",
"ws": "^8.12.0"
}
}