forked from srinivasiyer/koa-validation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.27 KB
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-validation",
"version": "0.1.9",
"description": "The Koa Validation is a single point validation library that enables you to validate params, body, queries, files and headers",
"main": "lib/validate.js",
"scripts": {
"test": "NODE_ENV=test mocha --require should --reporter spec",
"test-cov": "NODE_ENV=test node ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- --require should",
"test-travis": "NODE_ENV=test node ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- --require should"
},
"keywords": [
"koa",
"middleware",
"validation",
"filters",
"validator",
"koa-validation",
"koa validation",
"file validation"
],
"repository": "srinivasiyer/koa-validation",
"author": {
"name": "Srinivas Iyer",
"email": "srinivasiyer87@gmail.com"
},
"license": "ISC",
"dependencies": {
"co-fs-extra": "^1.1.0",
"mime-types": "^2.1.7",
"moment-timezone": "^0.4.1",
"validator": "^4.0.5"
},
"devDependencies": {
"co": "^4.6.0",
"istanbul-harmony": "^0.3.16",
"koa": "^1.0.0",
"koa-better-body": "^1.0.17",
"koa-qs": "^2.0.0",
"koa-router": "^5.2.1",
"mocha": "^2.3.3",
"should": "^7.1.1",
"supertest": "^1.1.0"
}
}