-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
58 lines (58 loc) · 1.43 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
{
"name": "openapi-enforcer",
"version": "1.23.0",
"description": "Library for validating, parsing, and formatting data against open api schemas.",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "mocha --recursive test",
"coverage": "nyc --reporter=html npm test",
"coverage:report": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
"coverage:watch": "chokidar 'test/**/*' 'bin/**/*' -c 'npm run coverage'",
"docs:build": "markdown-docs build docs-src docs",
"docs:dev": "markdown-docs dev docs-src",
"prepublishOnly": "npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/byu-oit/openapi-enforcer.git"
},
"types": "openapi-enforcer.d.ts",
"keywords": [
"openapi",
"swagger",
"validate",
"response",
"build",
"compose",
"parse",
"format",
"deserialize",
"serialize",
"request validation",
"request parsing",
"response validation",
"response serializing",
"utility",
"utils",
"plugable"
],
"author": "James Speirs",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/byu-oit/openapi-enforcer/issues"
},
"homepage": "https://openapi-enforcer.com",
"devDependencies": {
"chai": "^4.3.4",
"coveralls": "^3.1.1",
"mocha": "^9.1.3",
"nyc": "^15.1.0"
},
"dependencies": {
"js-yaml": "^4.1.0",
"randexp": "^0.5.3"
}
}