-
Notifications
You must be signed in to change notification settings - Fork 112
/
package.json
42 lines (42 loc) · 910 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
39
40
41
42
{
"name": "koa-static",
"description": "Static file serving middleware for koa",
"repository": "koajs/static",
"version": "5.0.0",
"keywords": [
"koa",
"middleware",
"file",
"static",
"sendfile"
],
"files": [
"index.js"
],
"devDependencies": {
"eslint": "^8.16.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^5.0.0",
"koa": "^2.13.4",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"supertest": "^6.2.3"
},
"license": "MIT",
"dependencies": {
"debug": "^4.3.4",
"koa-send": "^5.0.1"
},
"scripts": {
"lint": "eslint --fix .",
"test": "mocha --exit",
"test-cov": "nyc npm run test",
"test-travis": "nyc npm run test -- --report lcovonly"
},
"engines": {
"node": ">= 14"
}
}