-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
54 lines (54 loc) · 1.33 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
{
"name": "koa-subdomain",
"version": "3.0.0",
"description": "Simple and lightweight Koa middleware to handle multilevel and wildcard subdomains",
"main": "lib/subdomain.js",
"scripts": {
"test": "npm run test:lint && npm run test:unit",
"test:lint": "elint lint \"+(lib|test)/**/*.js\" --fix",
"test:unit": "nyc --reporter=html --reporter=text mocha \"test/**/*.js\"",
"test:coverage": "nyc report --reporter=lcovonly",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"beforecommit": "elint lint commit && npm run test"
},
"author": {
"name": "keenwon",
"email": "[email protected]"
},
"keywords": [
"koa",
"domain",
"subdomain",
"middleware"
],
"repository": {
"type": "git",
"url": "git+https://github.com/keenwon/koa-subdomain.git"
},
"files": [
"lib"
],
"engines": {
"node": ">=8"
},
"license": "MIT",
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"conventional-changelog-cli": "^2.1.0",
"elint": "^2.0.0-alpha.3",
"elint-preset-kw": "^1.9.0",
"get-port": "^5.1.1",
"koa": "^2.13.0",
"koa-router": "^9.4.0",
"mocha": "^7.2.0",
"nyc": "^15.1.0",
"request": "^2.88.2"
},
"dependencies": {
"debug": "^4.2.0"
},
"peerDependencies": {
"koa": "^2"
}
}