-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·46 lines (46 loc) · 1.18 KB
/
package.json
File metadata and controls
executable file
·46 lines (46 loc) · 1.18 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
43
44
45
46
{
"author": "Peter Schweitzer",
"name": "@peter-schweitzer/ezserver",
"version": "5.1.2",
"license": "MIT",
"main": "index.js",
"type": "module",
"exports": {
"import": "./index.js",
"types": "./index.d.ts"
},
"description": "BLAZINGLY FAST npm module for backend/REST-API development with 0! dependencies, inspired by express",
"homepage": "https://github.com/peter-schweitzer/EZServer",
"types": "types.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/peter-schweitzer/EZServer.git"
},
"bugs": {
"url": "https://github.com/peter-schweitzer/EZServer/issues"
},
"keywords": [
"simple",
"http",
"server",
"http-server",
"rest-api",
"server-side",
"backend",
"framework"
],
"scripts": {
"example": "cd example && node .",
"test:line-count": "./tests/line-count/run.sh",
"test:multi-module": "./tests/multi-module/run.sh",
"test:multi-module:cjs": "./tests/multi-module/cjs/run.sh",
"test:multi-module:jsm": "./tests/multi-module/jsm/run.sh"
},
"reveal": true,
"dependencies": {
"@peter-schweitzer/ez-utils": "^0.6.2"
},
"devDependencies": {
"prettier": "^3.5.3"
}
}