forked from Hatch-Team/serverless-openapi-documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.41 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.41 KB
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
64
65
66
67
68
69
70
71
72
{
"name": "serverless-openapi-documentation",
"version": "0.4.6",
"description": "Serverless 2.0 plugin to generate OpenAPI V3 documentation from serverless configuration",
"main": "build/index.js",
"repository": {
"type": "git",
"url": "https://github.com/conqa/serverless-openapi-documentation.git"
},
"bugs": "https://github.com/conqa/serverless-openapi-documentation/issues",
"author": "Abilio Henrique <abilio.henrique@temando.com>",
"contributors": [
"Abilio Henrique <abilio.henrique@temando.com>",
"nfour <novus.nfour@gmail.com>"
],
"keywords": [
"OpenAPI",
"swagger",
"serverless"
],
"license": "MIT",
"scripts": {
"test": "jest -c ./jest.config.js",
"test:build": "jest -c '{ \"testRegex\": \".spec.js$\"}' build",
"test:coverage": "jest -c ./jest.config.js --coverage",
"lint": "eslint --ext .ts,.tsx .",
"lint:fix": "npm run lint -- --fix",
"preversion": "npm run lint && npm run build && npm run test:build && changelog-verify CHANGELOG.md",
"version": "version-changelog CHANGELOG.md && changelog-verify CHANGELOG.md && git add CHANGELOG.md",
"release": "cd build && npm publish",
"test:project": "cd test/project && ./node_modules/.bin/sls openapi generate",
"test:prepare": "scripts/prepareTests.bash",
"build:link": "npm run build && cd build && npm link",
"build:watch": "npm run build && tsc --watch",
"build": "./scripts/build.bash"
},
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/jest": "^27.4.1",
"@types/js-yaml": "^4.0.5",
"@types/json-schema": "^7.0.11",
"@types/lodash": "^4.14.182",
"@types/node": "^14.17.5",
"@types/serverless": "^3.0.3",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"changelog-verify": "^1.1.2",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.5.1",
"openapi-types": "^11.0.0",
"prettier": "^2.6.2",
"serverless": "^3.10.2",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"typescript": "^4.6.3",
"version-changelog": "^3.1.1"
},
"dependencies": {
"chalk": "^4.1.2",
"js-yaml": "^4.1.0",
"json-schema-ref-parser": "^9.0.9",
"lodash": "^4.17.21",
"swagger2openapi": "^2.11.16",
"uuid": "^8.3.2"
},
"peerDependencies": {
"serverless": ">= 2.41 < 4"
}
}