Last change
on this file since 6a3a178 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
3.0 KB
|
Line | |
---|
1 | {
|
---|
2 | "definitions": {
|
---|
3 | "ObjectPattern": {
|
---|
4 | "type": "object",
|
---|
5 | "additionalProperties": false,
|
---|
6 | "properties": {
|
---|
7 | "from": {
|
---|
8 | "type": "string",
|
---|
9 | "minLength": 1
|
---|
10 | },
|
---|
11 | "to": {
|
---|
12 | "anyOf": [
|
---|
13 | {
|
---|
14 | "type": "string"
|
---|
15 | },
|
---|
16 | {
|
---|
17 | "instanceof": "Function"
|
---|
18 | }
|
---|
19 | ]
|
---|
20 | },
|
---|
21 | "context": {
|
---|
22 | "type": "string"
|
---|
23 | },
|
---|
24 | "globOptions": {
|
---|
25 | "type": "object"
|
---|
26 | },
|
---|
27 | "filter": {
|
---|
28 | "instanceof": "Function"
|
---|
29 | },
|
---|
30 | "transformAll": {
|
---|
31 | "instanceof": "Function"
|
---|
32 | },
|
---|
33 | "toType": {
|
---|
34 | "enum": ["dir", "file", "template"]
|
---|
35 | },
|
---|
36 | "force": {
|
---|
37 | "type": "boolean"
|
---|
38 | },
|
---|
39 | "priority": {
|
---|
40 | "type": "number"
|
---|
41 | },
|
---|
42 | "info": {
|
---|
43 | "anyOf": [
|
---|
44 | {
|
---|
45 | "type": "object"
|
---|
46 | },
|
---|
47 | {
|
---|
48 | "instanceof": "Function"
|
---|
49 | }
|
---|
50 | ]
|
---|
51 | },
|
---|
52 | "transform": {
|
---|
53 | "anyOf": [
|
---|
54 | {
|
---|
55 | "instanceof": "Function"
|
---|
56 | },
|
---|
57 | {
|
---|
58 | "type": "object",
|
---|
59 | "additionalProperties": false,
|
---|
60 | "properties": {
|
---|
61 | "transformer": {
|
---|
62 | "instanceof": "Function"
|
---|
63 | },
|
---|
64 | "cache": {
|
---|
65 | "anyOf": [
|
---|
66 | {
|
---|
67 | "type": "boolean"
|
---|
68 | },
|
---|
69 | {
|
---|
70 | "type": "object",
|
---|
71 | "additionalProperties": false,
|
---|
72 | "properties": {
|
---|
73 | "keys": {
|
---|
74 | "anyOf": [
|
---|
75 | {
|
---|
76 | "type": "object",
|
---|
77 | "additionalProperties": true
|
---|
78 | },
|
---|
79 | {
|
---|
80 | "instanceof": "Function"
|
---|
81 | }
|
---|
82 | ]
|
---|
83 | }
|
---|
84 | }
|
---|
85 | }
|
---|
86 | ]
|
---|
87 | }
|
---|
88 | }
|
---|
89 | }
|
---|
90 | ]
|
---|
91 | },
|
---|
92 | "transformPath": {
|
---|
93 | "instanceof": "Function"
|
---|
94 | },
|
---|
95 | "noErrorOnMissing": {
|
---|
96 | "type": "boolean"
|
---|
97 | }
|
---|
98 | },
|
---|
99 | "required": ["from"]
|
---|
100 | },
|
---|
101 | "StringPattern": {
|
---|
102 | "type": "string",
|
---|
103 | "minLength": 1
|
---|
104 | }
|
---|
105 | },
|
---|
106 | "type": "object",
|
---|
107 | "additionalProperties": false,
|
---|
108 | "properties": {
|
---|
109 | "patterns": {
|
---|
110 | "type": "array",
|
---|
111 | "minItems": 1,
|
---|
112 | "items": {
|
---|
113 | "anyOf": [
|
---|
114 | {
|
---|
115 | "$ref": "#/definitions/StringPattern"
|
---|
116 | },
|
---|
117 | {
|
---|
118 | "$ref": "#/definitions/ObjectPattern"
|
---|
119 | }
|
---|
120 | ]
|
---|
121 | }
|
---|
122 | },
|
---|
123 | "options": {
|
---|
124 | "type": "object",
|
---|
125 | "additionalProperties": false,
|
---|
126 | "properties": {
|
---|
127 | "concurrency": {
|
---|
128 | "type": "number"
|
---|
129 | }
|
---|
130 | }
|
---|
131 | }
|
---|
132 | },
|
---|
133 | "required": ["patterns"]
|
---|
134 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.