-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.19 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
{
"name": "udp2ws",
"version": "2.2.3",
"description": "Relay UDP packets to WebSocket server",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"prebuild": "rimraf lib",
"build": "tsc",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"coverage": "codecov",
"lint": "eslint '{src,test}/**/*.ts' --fix",
"release": "standard-version"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/fugle-dev/udp2ws.git"
},
"keywords": [
"udp",
"ws",
"dgram",
"websocket",
"relay"
],
"author": "Chun-Kai Wang <[email protected]>",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/node": "^17.0.5",
"@types/ws": "^5.0.0",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"codecov": "^3.8.3",
"eslint": "^8.5.0",
"jest": "^27.4.5",
"rimraf": "^3.0.2",
"standard-version": "^9.3.2",
"ts-jest": "^27.1.2",
"ts-node": "^10.4.0",
"typescript": "^4.5.4",
"ws": "^5.0.0"
},
"peerDependencies": {
"ws": ">=5.0.0"
}
}