forked from watson/http-echo-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 922 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": "http-echo-server",
"version": "2.2.0",
"type": "module",
"description": "A simple HTTP echo server",
"main": "src/index.js",
"bin": "src/index.js",
"scripts": {
"test": "standard && node src/test.js",
"start": "node src/index.js",
"start:dev": "DELAY=250 PORT=3333 npm run start",
"release": "standard-version -s"
},
"author": "Thomas Watson Steen <[email protected]>",
"license": "MIT",
"dependencies": {
"get-port": "^7.0.0"
},
"devDependencies": {
"standard": "^17.1.0",
"standard-version": "^9.5.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Mualig/http-echo-server.git"
},
"bugs": {
"url": "https://github.com/Mualig/http-echo-server/issues"
},
"homepage": "https://github.com/Mualig/http-echo-server",
"keywords": [
"http",
"tcp",
"echo",
"server",
"debug",
"debugger",
"test"
]
}