-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
53 lines (53 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
50
51
52
53
{
"name": "openapi-enforcer-middleware",
"version": "1.2.4",
"description": "An express middleware that makes it easy to write web services that follow an Open API specification.",
"main": "index.js",
"scripts": {
"docs:build": "markdown-docs build docs-src docs",
"docs:dev": "markdown-docs dev docs-src",
"test": "mocha test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/byu-oit/openapi-enforcer-middleware.git"
},
"types": "index.d.ts",
"keywords": [
"openapi",
"swagger",
"express",
"middleware",
"enforcer",
"validate",
"parse",
"format",
"openapi-enforcer"
],
"author": "James Speirs <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/byu-oit/openapi-enforcer-middleware/issues"
},
"homepage": "https://github.com/byu-oit/openapi-enforcer-middleware#readme",
"dependencies": {
"debug": "^3.2.6"
},
"peerDependencies": {
"openapi-enforcer": ">= 1.2.0"
},
"devDependencies": {
"@gi60s/markdown-docs": "0.0.10",
"@types/express": "^4.17.11",
"body-parser": "^1.19.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"express": "^4.17.1",
"mocha": "^5.2.0",
"nyc": "^14.1.1",
"openapi-enforcer": "^1.12.6",
"request": "^2.88.0",
"request-promise-native": "^1.0.7",
"standard": "^12.0.1"
}
}