forked from eXigentCoder/swagger-spec-express
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.02 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
59
60
61
62
63
{
"name": "swagger-spec-express",
"version": "2.0.15",
"description": "Allows you to programatically annotate your express routes with swagger info and then generate and validate your json spec file",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"mocha": "mocha --full-trace test/**/*.js",
"lint": "eslint \"lib/**/*.js\" \"test/**/*.js\"",
"test": "snyk test && nyc --include-all-sources cover mocha test/**/*.js",
"report": "plato -r -d report -e .eslintrc lib",
"update": "npm-check -Eu",
"jsdoc": "node_modules/.bin/jsdoc \"./lib/index.js\" --configure \"./jsdoc-config.json\" --destination \"./docs/generated/jsdoc/\" --readme \"./README.md\"",
"documentation": "node_modules/.bin/documentation readme --readme-file=README.md --section \"API\" --github --config=documentation.yml",
"JSONdocumentation": "node_modules/.bin/documentation build -o=docs/doc.json",
"setup-snyk": "node_modules/.bin/snyk wizard"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eXigentCoder/swagger-spec-express.git"
},
"keywords": [
"swagger",
"express",
"json",
"swagger-spec",
"specification",
"documentation",
"node",
"json-schema"
],
"author": "Ryan Kotzen",
"license": "MIT",
"bugs": {
"url": "https://github.com/eXigentCoder/swagger-spec-express/issues"
},
"homepage": "https://github.com/eXigentCoder/swagger-spec-express#readme",
"dependencies": {
"ajv": "6.10.0",
"async": "3.0.1",
"lodash": "^4.17.15",
"statuses": "1.5.0",
"swagger-schema-official": "2.0.0-bab6bed"
},
"devDependencies": {
"chai": "4.2.0",
"dirty-chai": "2.0.1",
"documentation": "11.0.0",
"escodegen": "1.11.1",
"eslint": "5.16.0",
"esprima": "4.0.1",
"estree-walker": "0.6.1",
"express": "4.17.1",
"jsdoc": "3.6.2",
"json-schema-ref-parser": "6.1.0",
"mocha": "6.1.4",
"npm-check": "5.9.0",
"nyc": "^14.1.1",
"plato": "1.7.0",
"request": "2.88.0",
"snyk": "1.174.1"
}
}