forked from buunguyen/koa-req-validator
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
49 lines (49 loc) · 1.38 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
{
"name": "@kobiton/koa-req-validator",
"version": "1.0.1",
"description": "Koa middleware to validate request parameters",
"main": "index.js",
"scripts": {
"build": "rimraf lib && babel src --out-dir lib",
"test": "mocha --compilers js:babel-register 'test/*.js'",
"deploy": "npm run build && cp package.json ./lib && npm publish ./lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/buunguyen/koa-req-validator.git"
},
"keywords": [
"koa",
"validate",
"validation",
"validator",
"request",
"params",
"parameters"
],
"author": "Buu Nguyen <[email protected]> (https://github.com/buunguyen)",
"license": "MIT",
"bugs": {
"url": "https://github.com/buunguyen/koa-req-validator/issues"
},
"homepage": "https://github.com/buunguyen/koa-req-validator",
"devDependencies": {
"babel": "^6.3.26",
"babel-cli": "^6.3.17",
"babel-plugin-syntax-async-functions": "^6.3.13",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-regenerator": "^6.3.26",
"babel-polyfill": "^6.3.14",
"babel-preset-es2015-node4": "^2.0.2",
"babel-register": "^6.3.13",
"chai": "^3.4.1",
"mocha": "^2.3.4",
"proxyquire": "^1.7.3",
"rimraf": "^2.4.4",
"sinon": "^1.17.2",
"validator": "^4.5.0"
},
"peerDependencies": {
"validator": "^4.5.0"
}
}