-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
43 lines (43 loc) · 1.09 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
{
"name": "koa-validate",
"version": "1.0.7",
"description": "A koa params validate middleware.",
"main": "validate.js",
"scripts": {
"test": "NODE_ENV=test mocha --harmony --require should --reporter spec",
"test-cov": "NODE_ENV=test node --harmony ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- --require should",
"test-travis": "NODE_ENV=test node --harmony ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- --require should"
},
"repository": {
"type": "git",
"url": "https://github.com/RocksonZeta/koa-validate.git"
},
"keywords": [
"web",
"koa",
"koa-validate",
"validate",
"validator",
"format",
"middleware"
],
"license": "MIT",
"dependencies": {
"json-path": "^0.1.3",
"validator": "^5.2.0"
},
"devDependencies": {
"koa": "*",
"koa-router": "*",
"koa-body": "*",
"should": "*",
"mocha": "*",
"supertest": "^0.13.0",
"coveralls": "*",
"mocha-lcov-reporter": "*",
"istanbul-harmony": "0"
},
"engines": {
"node": ">= 0.11.9"
}
}