forked from Hatch-Team/serverless-openapi-documentation
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
65 lines (65 loc) · 2.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
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
{
"name": "serverless-openapi-documentation",
"version": "0.4.5",
"description": "Serverless 1.0 plugin to generate OpenAPI V3 documentation from serverless configuration",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/temando/serverless-openapi-documentation.git"
},
"bugs": "https://github.com/temando/serverless-openapi-documentation/issues",
"author": "Abilio Henrique <[email protected]>",
"contributors": [
"Abilio Henrique <[email protected]>",
"nfour <[email protected]>"
],
"keywords": [
"OpenAPI",
"swagger",
"serverless"
],
"license": "MIT",
"scripts": {
"test": "jest",
"test:build": "jest -c '{}' build",
"test:coverage": "jest --coverage",
"lint": "tslint -p tsconfig.json --type-check -c tslint.json",
"preversion": "yarn lint && yarn build && yarn 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 && yarn sls openapi generate",
"test:prepare": "scripts/prepareTests.bash",
"build:link": "yarn build && cd build && yarn link",
"build:watch": "yarn build && tsc --watch",
"build": "scripts/build.bash",
"prepare": "npm run build"
},
"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.5.31",
"@types/node": "^8.0.7",
"@types/uuid": "^3.0.0",
"changelog-verify": "^1.0.4",
"jest": "^24.5.0",
"serverless": "^1.38.0",
"ts-jest": "^24.0.0",
"ts-node": "^3.1.0",
"tslint": "^5.4.3",
"tslint-config-temando": "^1.1.4",
"typescript": "^3.3.3333",
"version-changelog": "^2.1.0"
},
"dependencies": {
"@jdw/jst": "^2.0.0-beta.15",
"bluebird": "^3.5.0",
"chalk": "^1.1.3",
"fs-extra": "^4.0.1",
"js-yaml": "^3.8.4",
"lutils": "^2.4.0",
"swagger2openapi": "^2.5.0",
"uuid": "^3.1.0"
}
}