-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
51 lines (51 loc) · 1.08 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
45
46
47
48
49
50
51
{
"name": "koa-etag",
"description": "ETag support for koa",
"repository": "koajs/etag",
"version": "4.0.0",
"files": [
"index.js"
],
"scripts": {
"lint": "eslint .",
"test": "mocha --require should --exit",
"precov": "rimraf .nyc_output coverage",
"cov": "nyc npm run test",
"ci": "npm run lint && npm run cov"
},
"keywords": [
"koa",
"middleware",
"cache",
"caching",
"etag",
"file",
"static",
"sendfile"
],
"license": "MIT",
"dependencies": {
"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": "^10.2.0",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"should": "^13.2.3",
"supertest": "^6.3.3"
},
"enignes": {
"node": ">= 10"
},
"bugs": {
"url": "https://github.com/koajs/etag/issues"
},
"homepage": "https://github.com/koajs/etag#readme"
}