-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
40 lines (40 loc) · 907 Bytes
/
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
{
"name": "turbo-serv",
"version": "0.1.4",
"description": "Web Server based on Turbo HTTP",
"main": "lib/server.mjs",
"scripts": {
"test": "node --experimental-modules tests/test.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/geekskool/turbo-server.git"
},
"keywords": [
"Web",
"Server",
"Nodejs",
"Turbo",
"HTTP"
],
"author": "Santosh Rajan",
"license": "MIT",
"bugs": {
"url": "https://github.com/geekskool/turbo-server/issues"
},
"homepage": "https://github.com/geekskool/turbo-server#readme",
"dependencies": {
"cookie": "^0.3.1",
"cookie-signature": "^1.1.0",
"formidable": "^1.2.1",
"mime": "^2.2.0",
"node-fetch": "^2.0.0",
"querystring": "^0.2.0",
"turbo-http": "^0.3.0",
"uid-safe": "^2.1.5"
},
"devDependencies": {
"form-data": "^2.3.2",
"tape": "^4.9.0"
}
}