22 lines
475 B
JSON
22 lines
475 B
JSON
|
{
|
||
|
"name": "simple-callback-server",
|
||
|
"version": "1.0.0",
|
||
|
"description": "A simple server that prints headers and body of a request to the console.",
|
||
|
"main": "index.mjs",
|
||
|
"scripts": {
|
||
|
"start": "node index.mjs",
|
||
|
"test": "echo \"Error: no test specified\" && exit 1"
|
||
|
},
|
||
|
"keywords": [
|
||
|
"server",
|
||
|
"simple",
|
||
|
"http"
|
||
|
],
|
||
|
"author": "Daniel Kluge",
|
||
|
"license": "MIT",
|
||
|
"dependencies": {
|
||
|
"body-parser": "^1.20.0",
|
||
|
"express": "^4.18.1"
|
||
|
}
|
||
|
}
|