-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.29 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.29 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
47
48
49
50
51
52
53
54
55
{
"name": "0http",
"version": "4.4.0",
"description": "Zero friction HTTP request router. The need for speed!",
"main": "index.js",
"scripts": {
"format": "npx standard --fix",
"test": "cross-env PORT=3000 NODE_ENV=testing npx nyc --check-coverage --lines 85 node ./node_modules/mocha/bin/mocha tests/*.test.js",
"bench": "node --expose-gc bench.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BackendStack21/0http.git"
},
"keywords": [
"http",
"server",
"router",
"rest"
],
"engines": {
"node": ">=22.x"
},
"author": "Rolando Santamaria Maso <kyberneees@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/BackendStack21/0http/issues"
},
"homepage": "https://github.com/BackendStack21/0http#readme",
"devDependencies": {
"0http": "^4.3.0",
"@types/node": "^24.3.2",
"body-parser": "^2.2.0",
"chai": "^6.0.1",
"cross-env": "^10.0.0",
"mitata": "^1.0.34",
"mocha": "^11.7.2",
"nyc": "^17.1.0",
"supertest": "^7.1.4"
},
"files": [
"LICENSE",
"README.md",
"index.js",
"index.d.ts",
"common.d.ts",
"lib/"
],
"dependencies": {
"lru-cache": "^11.2.1",
"regexparam": "^3.0.0",
"trouter": "^4.0.0"
},
"types": "./index.d.ts"
}