-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.05 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
{
"name": "arcjs",
"version": "1.0.0",
"description": "ArcJS: A lightweight, educational web framework for Node.js built from scratch to demystify how servers work. This project features a 100% dependency-free architecture to provide a deep, hands-on understanding of the request-response lifecycle.",
"main": "./src/index.cjs",
"type": "module",
"module": "./src/index.mjs",
"exports": {
".": {
"import": "./src/index.mjs",
"require": "./src/index.cjs"
}
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"test1": "node ./test/test1-getRoute.js",
"test2": "node ./test/test2-postRoute.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/theniteshdev/ArcJS.git"
},
"keywords": [
"nodejs",
"web-framework",
"backend",
"http-server",
"educational",
"zero-dependency"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/theniteshdev/ArcJS/issues"
},
"homepage": "https://github.com/theniteshdev/ArcJS#readme"
}