-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
44 lines (44 loc) · 1.04 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
{
"name": "koa-sendfile",
"version": "3.0.0",
"description": "basic file-sending utility for koa",
"files": [
"index.js"
],
"repository": "koajs/sendfile",
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "mocha --r should --exit",
"precoverage": "rimraf .nyc_output coverage",
"coverage": "nyc npm run test",
"ci": "npm run coverage"
},
"author": {
"name": "Jonathan Ong",
"email": "[email protected]",
"url": "http://jongleberry.com",
"twitter": "https://twitter.com/jongleberry"
},
"license": "MIT",
"dependencies": {
"debug": "^4.2.0",
"etag": "^1.8.1"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"koa": "^2.13.0",
"mocha": "^8.1.3",
"nyc": "^15.1.0",
"should": "^13.2.3",
"supertest": "^4.0.2"
},
"engines": {
"node": ">= 10"
}
}