-
Notifications
You must be signed in to change notification settings - Fork 9
/
packman.config.json
74 lines (74 loc) · 2.21 KB
/
packman.config.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
{
"function": [
{
"name": "fgt-as-handler",
"source": {
"filename": "index.ts",
"location": "functions/fgt-as-handler"
},
"output": {
"filename": "fgt-as-handler",
"location": "functions"
},
"copyList": [
{
"name": "license",
"location": "./LICENSE",
"fromSourceDir": true
},
{
"name": "package.json",
"location": "./package.json",
"fromSourceDir": true
}
],
"syncVersion": true
}
],
"bundle": {
"filenamePrefix": "",
"filenameSuffix": "-bundle"
},
"package": [
{
"name": "aws-cloudformation",
"staticFile": [
{
"name": "core-configset",
"copyFrom": "node_modules/@fortinet/fortigate-autoscale/assets/configset",
"saveTo": "./assets/configset",
"includeSubDir": false
},
{
"name": "aws-configset",
"copyFrom": "node_modules/@fortinet/fortigate-autoscale/assets/configset/aws",
"saveTo": "./assets/configset",
"includeSubDir": false
},
{
"name": "templates",
"copyFrom": "templates",
"saveTo": "./"
},
{
"name": "readme",
"copyFrom": "README.md",
"saveTo": "./README.md"
}
],
"function": [
{
"name": "fgt-as-handler",
"ref": "fgt-as-handler"
}
],
"saveFunctionSource": false,
"functionPackageDir": "./functions/packages",
"functionSourceDir": "./functions/sources"
}
],
"output": {
"outDir": "build/bundled",
"packageDir": "dist/artifacts"
}
}