-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.1 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
{
"name": "swagvali",
"version": "1.0.1",
"description": "A module to build validators for OpenApi (Swagger) Request parameters and Response objects",
"main": "lib/index.js",
"scripts": {
"test": "npm run lint && ava test/*.js --tap",
"lint": "eslint .",
"cover": "npm run lint && istanbul cover ava -- test/*.js --tap"
},
"repository": {
"type": "git",
"url": "git+https://github.com/subeeshcbabu/swagvali.git"
},
"engines": {
"node": "6"
},
"keywords": [
"openapi",
"swagger",
"request",
"param",
"parameter",
"validator",
"validation"
],
"author": "Subeesh Chothendavida",
"license": "MIT",
"bugs": {
"url": "https://github.com/subeeshcbabu/swagvali/issues"
},
"homepage": "https://github.com/subeeshcbabu/swagvali#readme",
"dependencies": {
"co": "^4.6.0",
"enjoi": "^2.1.0",
"is-my-json-valid": "subeeshcbabu/is-my-json-valid",
"swagger-parser": "^3.4.1"
},
"devDependencies": {
"ava": "^0.16.0",
"eslint": "^3.4.0",
"istanbul": "^0.4.5",
"node-fetch": "^1.6.0",
"swagmock": "^1.0.0"
}
}