-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.14 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.14 KB
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
{
"name": "cannibal",
"version": "0.0.3",
"description": "An HTTP/2 web server written with 100% JavaScript for Nodejs. The web server can process html webpages with server side JavaScript. Has built in features for inlining JavaScript with html code. It has been built to support all HTTP/2 features like pushing and custom caching without cookies.",
"main": "bin/main.js",
"homepage": "https://codevendor.com",
"type": "module",
"dependencies": {
"inferjs": "^0.0.5"
},
"scripts": {},
"keywords": [
"cannibal",
"webserver",
"web",
"server",
"http",
"http2",
"html"
],
"author": {
"name": "Adam Smith",
"url": "https://codevendor.com/"
},
"contributors": [],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Codevendor/cannibal.git"
},
"engines": {
"node": ">=12.0.0",
"npm": ">=5.0.0"
},
"bugs": {
"url": "https://github.com/Codevendor/cannibal/issues"
},
"bin": {
"cannibal": "bin/main.js"
},
"engineStrict": true
}