generated from leumasme/typescript-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.19 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
{
"name": "koa-domainrouter",
"version": "0.6.1",
"description": "Use different middleware depending on the Domain a request was sent to. Supports Wildcards.",
"main": "build/index.js",
"types": "build/index.d.ts",
"sideEffects": false,
"bugs": {
"url": "https://github.com/leumasme/koa-domainrouter/issues"
},
"files": [
"build"
],
"keywords": [
"koa",
"middleware",
"domain",
"router",
"routing",
"subdomain",
"host",
"hostname"
],
"repository": {
"type": "git",
"url": "github:leumasme/koa-domainrouter"
},
"scripts": {
"prepublish": "npx tsc",
"build": "npx tsc",
"test": "mocha -r ts-node/register tests/**/*.ts"
},
"author": "Temm",
"license": "ISC",
"devDependencies": {
"@types/chai": "^4.2.21",
"@types/mocha": "^9.0.0",
"@types/node": "^14.14.34",
"chai": "^4.3.4",
"koa": "^2.13.1",
"mocha": "^9.1.1",
"ts-node": "^10.2.1",
"typescript": "^4.2.3"
},
"dependencies": {
"@types/koa": "^2.13.4",
"matcher": "^4.0.0"
}
}