This repository has been archived by the owner on Dec 10, 2021. It is now read-only.
forked from temando/serverless-openapi-documentation
-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
77 lines (77 loc) · 2.53 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@conqa/serverless-openapi-documentation",
"version": "2.0.0",
"description": "Serverless 1.0 plugin to generate OpenAPI V3 documentation from serverless configuration",
"main": "index.js",
"engines": {
"node": ">=10.0.0",
"npm": ">=6.14.6"
},
"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/bluebird": "^3.5.8",
"@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",
"changelog-verify": "^1.0.4",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.2.0",
"eslint-plugin-prettier": "^3.0.1",
"jest": "^24.8.0",
"openapi-types": "^1.3.4",
"prettier": "^1.17.0",
"serverless": "^1.41.1",
"ts-jest": "^24.0.2",
"ts-node": "^3.1.0",
"typescript": "^3.4.5",
"version-changelog": "^2.1.0"
},
"dependencies": {
"bluebird": "^3.5.0",
"chalk": "^2.0.1",
"fs-extra": "^4.0.1",
"js-yaml": "^3.8.4",
"json-schema-ref-parser": "^6.1.0",
"lodash": "^4.17.11",
"swagger2openapi": "^2.5.0",
"uuid": "^3.1.0"
}
}