forked from mpashkovskiy/express-oas-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 2.06 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
{
"name": "express-oas-generator",
"version": "1.0.23",
"description": "Module to automatically generate OpenAPI (Swagger) specification for existing ExpressJS 4.x REST API applications",
"main": "index.js",
"typings": "./index.d.ts",
"directories": {
"test": "test",
"lib": "lib"
},
"scripts": {
"lint": "eslint --ignore-pattern \"*.json\" lib/** test/** index.js",
"jasmine": "nyc --reporter cobertura --reporter html --reporter text --report-dir ./build/test-reports/coverage node ./node_modules/jasmine/bin/jasmine.js JASMINE_CONFIG_PATH=test/_jasmine/jasmine.json",
"cve-check": "npm audit --audit-level high",
"test": "npm run lint -- --fix && npm run cve-check && npm run jasmine",
"send-coverage": "nyc report --reporter=text-lcov | ./node_modules/coveralls/bin/coveralls.js",
"pp": "npm version patch && npm publish && git push --follow-tag",
"generate-docs": "jsdoc -c jsdoc.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mpashkovskiy/express-oas-generator.git"
},
"keywords": [
"ExpressJS",
"OpenAPI",
"Swagger"
],
"author": "Matvey Pashkovskiy <[email protected]> (https://www.linkedin.com/in/matvey-pashkovskiy-0a1a9940/)",
"license": "ISC",
"bugs": {
"url": "https://github.com/mpashkovskiy/express-oas-generator/issues"
},
"homepage": "https://github.com/mpashkovskiy/express-oas-generator#readme",
"dependencies": {
"@types/express": "^4.17.2",
"express-list-endpoints": "^3.0.1",
"generate-schema": "^2.6.0",
"openapi-types": "^1.3.5",
"swagger-ui-express": "^3.0.8",
"typescript": "^3.7.2",
"lodash.merge": "^4.6.2"
},
"devDependencies": {
"assert": "^1.4.1",
"body-parser": "^1.18.2",
"coveralls": "^3.0.0",
"docdash": "^1.1.1",
"eslint": "^4.13.1",
"express": "^4.16.2",
"jasmine": "^2.8.0",
"jasmine-reporters": "^2.2.1",
"jasmine-spec-reporter": "^4.2.1",
"jsdoc": "^3.6.3",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^14.1.1",
"request": "^2.88.0",
"zlib": "^1.0.5"
}
}