forked from kogosoftwarellc/open-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.35 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
{
"name": "express-openapi",
"version": "1.1.0",
"description": "An unopinionated OpenAPI framework for express",
"scripts": {
"cover": "istanbul cover _mocha -- ./test/*.js",
"coveralls": "cat ./coverage/lcov.info | coveralls -v",
"test-watch": "mocha -w ./test/*.js ./test/**/*.js",
"test": "mocha ./test/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kogosoftwarellc/express-openapi.git"
},
"keywords": [
"openapi",
"swagger",
"express"
],
"author": "Joseph Spencer",
"license": "MIT",
"bugs": {
"url": "https://github.com/kogosoftwarellc/express-openapi/issues"
},
"homepage": "https://github.com/kogosoftwarellc/express-openapi#readme",
"devDependencies": {
"body-parser": "^1.14.2",
"chai": "^3.5.0",
"cors": "^2.7.1",
"coveralls": "^2.11.6",
"express": "^4.13.3",
"istanbul": "^0.4.1",
"mocha": "^2.3.4",
"supertest": "^1.1.0"
},
"dependencies": {
"express-normalize-query-params-middleware": "^0.5.0",
"express-openapi-coercion": "^0.5.0",
"express-openapi-defaults": "^0.4.2",
"express-openapi-response-validation": "^0.3.0",
"express-openapi-security": "^0.2.0",
"express-openapi-validation": "^0.9.0",
"fs-routes": "^1.0.0",
"glob": "*",
"is-dir": "^1.0.0",
"openapi-schema-validation": "^0.2.0"
}
}