-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 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
{
"name": "@well-known-components/uws-http-server",
"version": "0.0.1",
"description": "uws http server component",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.json",
"test": "jest --forceExit --detectOpenHandles --coverage --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/well-known-components/uws-http-server.git"
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/well-known-components/uws-http-server/issues"
},
"prettier": {
"printWidth": 120,
"semi": false,
"singleQuote": true,
"trailingComma": "none",
"tabWidth": 2
},
"homepage": "https://github.com/well-known-components/uws-http-server#readme",
"devDependencies": {
"@types/node": "^20.3.2",
"@types/node-fetch": "^2.6.11",
"@well-known-components/env-config-provider": "^1.2.0",
"@well-known-components/logger": "^3.1.3",
"@well-known-components/test-helpers": "^1.5.6",
"node-fetch": "2",
"typescript": "^5.3.3"
},
"dependencies": {
"@well-known-components/interfaces": "^1.4.3",
"uWebSockets.js": "github:uNetworking/uWebSockets.js#v20.43.0"
},
"files": [
"dist"
]
}