UNPKG

815 BJSONView Raw
1{
2 "defaults": {
3 "serverPort": "3000",
4 "implFolder": "impl",
5 "googleCloudFunctions": false
6 },
7 "directories": [
8 "api", "controllers", "utils", "impl"
9 ],
10 "transformations": [
11 { "input": "index.mustache", "output": "index.js" },
12 { "input": "index-gcf.mustache", "output": "index-gcf.js" },
13 { "input": "package.mustache", "output": "package.json" },
14 { "input": "README.mustache", "output": "README.md" },
15 { "input": "swagger.mustache", "output": "api/swagger.yaml" },
16 { "input": "writer.mustache", "output": "utils/writer.js" }
17 ],
18 "perApi": [
19 { "input": "controller.mustache", "output": "controllers/{{name}}.js" },
20 { "input": "service.mustache", "output": "impl/{{name}}ApiService.js" }
21 ]
22}