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
|
{
"name": "koa-mount",
"description": "Mounting middleware for koa",
"repository": "koajs/mount",
"version": "3.0.0",
"keywords": [
"koa",
"middleware",
"mount",
"mounting"
],
"files": [
"index.js"
],
"devDependencies": {
"istanbul": "^0.4.5",
"koa": "^2.0.1",
"mocha": "^3.2.0",
"should": "^11.2.0",
"supertest": "^3.0.0"
},
"license": "MIT",
"dependencies": {
"debug": "^2.6.1",
"koa-compose": "^3.2.1"
},
"scripts": {
"test": "NODE_ENV=test mocha --reporter spec",
"test-cov": "NODE_ENV=test istanbul cover ./node_modules/.bin/_mocha",
"test-travis": "NODE_ENV=test istanbul cover ./node_modules/.bin/_mocha --report lcovonly"
},
"engines": {
"node": ">= 7.6.0"
}
}
|