-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
55 lines (55 loc) · 1.28 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "0http",
"version": "3.5.3",
"description": "Cero 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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BackendStack21/0http.git"
},
"keywords": [
"http",
"server",
"router",
"rest"
],
"engines": {
"node": ">=10.x"
},
"author": "Rolando Santamaria Maso <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/BackendStack21/0http/issues"
},
"homepage": "https://github.com/BackendStack21/0http#readme",
"devDependencies": {
"0http": "^3.5.2",
"@types/node": "^18.14.4",
"body-parser": "^1.20.1",
"chai": "^4.3.7",
"cross-env": "^7.0.3",
"find-my-way": "^5.2.0",
"mitata": "^0.1.11",
"mocha": "^10.4.0",
"nyc": "^15.1.0",
"supertest": "^6.3.3"
},
"files": [
"LICENSE",
"README.md",
"index.js",
"index.d.ts",
"common.d.ts",
"lib/"
],
"dependencies": {
"lru-cache": "^10.2.0",
"regexparam": "^3.0.0",
"trouter": "^3.2.1"
},
"types": "./index.d.ts"
}