-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
39 lines (39 loc) · 976 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
{
"name": "@koa/json-filter",
"version": "1.0.0",
"repository": "koajs/json-filter",
"description": "Middleware allowing the client to filter the response to only what they need",
"keywords": [
"koa",
"middleware",
"performance"
],
"dependencies": {},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-koa": "^2.0.2",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.10.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.0.1",
"istanbul": "^0.4.5",
"koa": "^2.5.0",
"koa-router": "^7.4.0",
"mocha": "^5.0.5",
"supertest": "^3.0.0"
},
"engines": {
"node": ">= 7.6.0"
},
"license": "MIT",
"scripts": {
"lint": "eslint index.js test examples --fix",
"test": "mocha",
"test-cov": "istanbul cover _mocha",
"test-travis": "istanbul cover _mocha --report lcovonly"
},
"files": [
"index.js"
]
}