-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 909 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
{
"name": "koa-body-inspector",
"version": "2.0.1",
"description": "KOA middleware for sanitizing/validating request bodies",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test jest ./lib",
"style-check": "eslint .",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -w -a",
"coverage": "NODE_ENV=test jest --config=jest.coverage.config.json ./lib"
},
"keywords": [
"KOA",
"request",
"body",
"inspector",
"sanitize",
"validate"
],
"engines": {
"node": ">=7.6.0"
},
"author": "Daniel Kennedy",
"repository": {
"type": "git",
"url": "https://github.com/danwkennedy/koa-body-inspector"
},
"license": "MIT",
"devDependencies": {
"conventional-changelog-cli": "^2.0.21",
"eslint": "^7.2.0",
"jest": "^26.0.1"
},
"dependencies": {
"bluebird": "^3.5.0",
"schema-inspector": "^1.6.4"
}
}