-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 928 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 928 Bytes
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
{
"name": "simplify-converter",
"version": "0.1.7",
"description": "Convert from Serverless YAML into OpenAPI 3.0",
"main": "converter.js",
"bin": {
"simplify-converter": "converter.js"
},
"scripts": {
"start": "node converter.js serverless -i specs/serverless.yaml -o ../output -c specs/config.yaml"
},
"repository": {
"type": "git",
"url": "git+https://github.com/simplify-framework/converter.git"
},
"keywords": [
"converter",
"openapi",
"lambda",
"aws"
],
"author": "Duong Dinh Cuong",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/simplify-framework/converter/issues"
},
"homepage": "https://github.com/simplify-framework/converter#README",
"dependencies": {
"hogan.js": "^3.0.2",
"reftools": "^1.1.1",
"rimraf": "^3.0.2",
"uuid": "^3.4.0",
"yaml": "^1.9.1",
"yargs": "^14.2.3",
"yaml-lint": "^1.2.4"
}
}