-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 915 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 915 Bytes
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
{
"name": "static_site_server",
"version": "1.0.0",
"description": "This is just a simple static site server built in pure NodeJS without using any frameworks. This is just a fun project to test the capabilities of NodeJS without any of its frameworks.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"server": "nodemon index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Zain-Khoso/StaticSiteServer-NodeJS.git"
},
"keywords": [
"nodejs",
"javascript",
"staticsiteserver",
"server"
],
"author": "Zain Khoso",
"license": "MIT",
"bugs": {
"url": "https://github.com/Zain-Khoso/StaticSiteServer-NodeJS/issues"
},
"homepage": "https://github.com/Zain-Khoso/StaticSiteServer-NodeJS#readme",
"devDependencies": {
"nodemon": "^3.0.3"
}
}