-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 969 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 969 Bytes
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
{
"name": "koa-mount",
"description": "Mounting middleware for koa",
"repository": "koajs/mount",
"version": "4.2.0",
"keywords": [
"koa",
"middleware",
"mount",
"mounting"
],
"files": [
"index.js"
],
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-standard": "^7.1.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^5.0.0",
"istanbul": "^0.4.5",
"koa": "^2.0.1",
"koa-static": "^5.0.0",
"mocha": "^9.1.1",
"should": "^11.2.0",
"supertest": "^6.1.6"
},
"license": "MIT",
"dependencies": {
"debug": "^4.0.1",
"koa-compose": "^4.1.0"
},
"scripts": {
"lint": "eslint --fix .",
"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"
}
}