-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 1.61 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
52
53
54
55
56
57
58
59
60
{
"name": "koa-async-validator",
"description": "Koa middleware for the validator module.",
"author": "Luis Carlos Cruz Carballo <[email protected]",
"contributors": [],
"version": "0.4.1",
"homepage": "https://github.com/carlitux/koa-async-validator",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/carlitux/koa-async-validator"
},
"main": "./index.js",
"scripts": {
"test": "mocha --require @babel/register",
"eslint": "eslint ./test ./src",
"build": "babel src/koa_validator.js -o lib/koa_validator.js",
"changelog": "github-changes -o carlitux -r koa-async-validator -a -m YYYY/MM/DD --no-merges"
},
"engines": {
"node": ">= 10"
},
"dependencies": {
"lodash": "^4.16.4",
"validator": "^11.0.0"
},
"devDependencies": {
"babel-runtime": "^6.11.6",
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"@babel/register": "^7.0.0-beta.54",
"babel-eslint": "^10.0.1",
"body-parser": "^1.18.3",
"chai": "^4.2.0",
"eslint": "^5.7.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-prettier": "^3.0.0",
"github-changes": "^1.1.2",
"koa": "^2.0.0",
"koa-bodyparser": "^4.2.1",
"koa-route": "^3.1.0",
"koa-router": "^7.0.1",
"mocha": "^5.2.0",
"prettier": "^1.14.3",
"supertest": "^3.3.0",
"supertest-koa-agent": "^0.3.0"
},
"keywords": [
"koa",
"validator",
"validation",
"validate",
"sanitize",
"sanitization",
"xss"
]
}