-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@macchiatojs/router",
"version": "0.10.1",
"description": "Expressive elegant modern amiable Router for raw Node.js/Macchiato.js/Koa.js ⚡.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"lint": "eslint . --ext .ts",
"pretest": "rimraf dist",
"test": "mocha --recursive --exit",
"build": "tsc -d",
"precoverage": "rimraf coverage .nyc_output",
"coverage": "nyc npm run test",
"postcoverage": "npm run build",
"preci": "npm run lint",
"ci": "npm run coverage",
"postversion": "git push && git push --tags",
"prepublishOnly": "npm run ci",
"preversion": "npm run ci"
},
"repository": {
"type": "git",
"url": "git+https://github.com/macchiatojs/router.git"
},
"keywords": [
"macchiatojs",
"raw-nodejs",
"koa",
"router",
"macchiatojs-router",
"raw-nodejs-router",
"koajs-router",
"isomorphic-router",
"trouter",
"trek-router",
"route",
"http",
"server",
"isomorphic",
"fast",
"crazy"
],
"license": "MIT",
"author": {
"name": "imed jaberi",
"email": "[email protected]",
"url": "https://www.3imed-jaberi.com"
},
"dependencies": {
"@macchiatojs/koaify-middleware": "^0.2.0",
"@macchiatojs/middleware": "^0.2.0",
"hashlru": "^2.3.0",
"trek-router": "^1.2.0",
"trouter": "^3.2.0"
},
"peerDependencies": {
"@macchiatojs/kernel": "^0.19.0",
"@types/koa": "^2.13.4",
"koa": "^2.13.4",
"parseurl": "^1.3.3"
},
"devDependencies": {
"@macchiatojs/kernel": "^0.24.0",
"@types/chai": "^4.3.0",
"@types/koa": "^2.13.4",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.23",
"@types/supertest": "^2.0.12",
"@types/trouter": "^3.1.1",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"chai": "^4.3.6",
"eslint": "^8.13.0",
"koa": "^2.13.4",
"mocha": "^9.2.2",
"nyc": "^15.1.0",
"parseurl": "^1.3.3",
"rimraf": "^3.0.2",
"supertest": "^6.2.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
},
"engines": {
"node": ">= 16"
},
"bugs": {
"url": "https://github.com/macchiatojs/router/issues"
},
"homepage": "https://github.com/macchiatojs/router#readme"
}