forked from theodo/serverless-openapi
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.09 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
{
"name": "@includable/serverless-openapi",
"version": "1.3.6",
"description": "Serverless plugin to generate OpenAPI V3 documentation from serverless configuration",
"main": "build/index.js",
"author": "Includable <[email protected]>",
"license": "MIT",
"scripts": {
"build": "tsc",
"prepare": "npm run build"
},
"devDependencies": {
"@types/chalk": "^0.4.31",
"@types/fs-extra": "^4.0.0",
"@types/jest": "^20.0.2",
"@types/js-yaml": "^3.12.1",
"@types/json-schema": "^7.0.3",
"@types/lodash": "^4.14.123",
"@types/node": "^8.10.48",
"@types/serverless": "^1.18.2",
"@types/uuid": "^3.4.4",
"@typescript-eslint/eslint-plugin": "^1.7.0",
"@typescript-eslint/parser": "^1.7.0",
"openapi-types": "^1.3.4",
"prettier": "^3.2.5",
"serverless": "^1.41.1",
"ts-node": "^3.1.0",
"typescript": "^3.4.5"
},
"dependencies": {
"chalk": "^2.0.1",
"fs-extra": "^4.0.1",
"js-yaml": "^3.8.4",
"json-schema-ref-parser": "^6.1.0",
"lodash": "^4.17.21",
"swagger2openapi": "^2.5.0",
"uuid": "^3.1.0"
}
}