-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
38 lines (38 loc) · 895 Bytes
/
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
{
"name": "koa-virtual-host",
"version": "0.2.0",
"description": "A name-based virtual host engine for Koa2.",
"author": "Equim",
"keywords": [
"koa",
"vhost",
"middleware"
],
"main": "index.js",
"engines": {
"node": ">= 7.6.0"
},
"repository": {
"trype": "git",
"url": "https://github.com/Equim-chan/koa-virtual-host.git"
},
"scripts": {
"lint": "eslint --fix .",
"test": "mocha -b",
"test-cov": "istanbul cover ./node_modules/mocha/bin/_mocha -- -b",
"test-travis": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly"
},
"license": "MIT",
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.19.0",
"eslint-config-google": "^0.7.1",
"istanbul": "^1.1.0-alpha.1",
"koa": "^2.2.0",
"mocha": "^3.2.0",
"supertest": "^3.0.0"
},
"dependencies": {
"koa-compose": "^4.0.0"
}
}