@cobaltio/cobalt-js 0.1.1 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (5) hide show
  1. package/README.md +105 -210
  2. package/cobalt.js +103 -200
  3. package/cobalt.min.js +1 -1
  4. package/docs.md +104 -209
  5. package/package.json +1 -2
package/docs.md CHANGED
@@ -9,21 +9,15 @@
9
9
  ## Typedefs
10
10
 
11
11
  <dl>
12
- <dt><a href="#Field">Field</a> : <code>object</code></dt>
13
- <dd><p>The Node Field object available for configuration.</p>
14
- </dd>
15
- <dt><a href="#Node">Node</a> : <code>object</code></dt>
16
- <dd><p>The Node object available for configuration.</p>
17
- </dd>
18
- <dt><a href="#Workflow">Workflow</a> : <code>object</code></dt>
19
- <dd><p>The installed workflow.</p>
20
- </dd>
21
- <dt><a href="#AppAuthStatus">AppAuthStatus</a> : <code>object</code></dt>
22
- <dd><p>The auth status of the user for an application.</p>
23
- </dd>
24
12
  <dt><a href="#AppConfig">AppConfig</a> : <code>object</code></dt>
25
13
  <dd><p>The configuration data for an application.</p>
26
14
  </dd>
15
+ <dt><a href="#AppInstance">AppInstance</a> : <code>Object</code></dt>
16
+ <dd><p>An installed application.</p>
17
+ </dd>
18
+ <dt><a href="#Workflow">Workflow</a> : <code>Object</code></dt>
19
+ <dd><p>The workflow.</p>
20
+ </dd>
27
21
  </dl>
28
22
 
29
23
  <a name="Cobalt"></a>
@@ -32,26 +26,25 @@
32
26
  Cobalt Frontend SDK
33
27
 
34
28
  **Kind**: global class
29
+ **Properties**
30
+
31
+ | Name | Type | Description |
32
+ | --- | --- | --- |
33
+ | token | <code>String</code> | The session token. |
34
+
35
35
 
36
36
  * [Cobalt](#Cobalt)
37
37
  * [new Cobalt(options)](#new_Cobalt_new)
38
- * [.token](#Cobalt+token) ⇒ <code>string</code>
39
- * [.token](#Cobalt+token) ⇒ <code>string</code>
40
- * [.baseUrl](#Cobalt+baseUrl) ⇒ <code>string</code>
41
- * [.installTemplate()](#Cobalt+installTemplate) ⇒ [<code>Promise.&lt;Workflow&gt;</code>](#Workflow)
38
+ * [.oauth(application)](#Cobalt+oauth) ⇒ <code>Promise.&lt;Boolean&gt;</code>
39
+ * [.auth(application, payload)](#Cobalt+auth) ⇒ <code>Promise.&lt;unknown&gt;</code>
40
+ * [.authCustom(applicationId, payload)](#Cobalt+authCustom) ⇒ <code>Promise.&lt;unknown&gt;</code>
41
+ * [.checkAuth(application)](#Cobalt+checkAuth) ⇒ <code>Promise.&lt;Boolean&gt;</code>
42
+ * [.removeAuth(application, [applicationId])](#Cobalt+removeAuth) ⇒ <code>Promise.&lt;void&gt;</code>
42
43
  * [.getAppConfig(application)](#Cobalt+getAppConfig) ⇒ [<code>Promise.&lt;AppConfig&gt;</code>](#AppConfig)
43
- * [.getAppAuthStatus()](#Cobalt+getAppAuthStatus) ⇒ <code>Promise.&lt;boolean&gt;</code>
44
- * [.getAppAuthUrl()](#Cobalt+getAppAuthUrl) ⇒ <code>Promise.&lt;string&gt;</code>
45
- * [.oauth()](#Cobalt+oauth) ⇒ <code>Promise.&lt;boolean&gt;</code>
46
- * [.setAppAuthData()](#Cobalt+setAppAuthData) ⇒ <code>Promise.&lt;void&gt;</code>
47
- * [.removeAppAuth()](#Cobalt+removeAppAuth) ⇒ <code>Promise.&lt;void&gt;</code>
48
- * [.getNodeConfiguration()](#Cobalt+getNodeConfiguration) ⇒ <code>Promise.&lt;Array.&lt;Field&gt;&gt;</code>
49
- * [.saveNode()](#Cobalt+saveNode) ⇒ [<code>Promise.&lt;Workflow&gt;</code>](#Workflow)
50
- * [.getWorkflowConfiguration()](#Cobalt+getWorkflowConfiguration) ⇒ [<code>Promise.&lt;Workflow&gt;</code>](#Workflow)
51
- * [.activateWorkflow()](#Cobalt+activateWorkflow) ⇒ <code>Promise.&lt;void&gt;</code>
52
- * [.activateWorkflows()](#Cobalt+activateWorkflows) ⇒ <code>Promise.&lt;void&gt;</code>
53
- * [.toggleWorkflowStatus()](#Cobalt+toggleWorkflowStatus) ⇒ [<code>Promise.&lt;Workflow&gt;</code>](#Workflow)
54
- * [.deleteWorkflow()](#Cobalt+deleteWorkflow) ⇒ <code>Promise.&lt;unknown&gt;</code>
44
+ * [.install(applicationId, payload)](#Cobalt+install) ⇒ [<code>Promise.&lt;AppInstance&gt;</code>](#AppInstance)
45
+ * [.getInstallation(applicationId, installationId)](#Cobalt+getInstallation) ⇒ [<code>Promise.&lt;AppInstance&gt;</code>](#AppInstance)
46
+ * [.updateInstallation(applicationId, installationId, payload)](#Cobalt+updateInstallation) ⇒ [<code>Promise.&lt;AppInstance&gt;</code>](#AppInstance)
47
+ * [.deleteInstallation(applicationId, installationId)](#Cobalt+deleteInstallation) ⇒ <code>Promise.&lt;unknown&gt;</code>
55
48
 
56
49
  <a name="new_Cobalt_new"></a>
57
50
 
@@ -61,272 +54,174 @@ Cobalt Frontend SDK
61
54
 
62
55
  | Param | Type | Default | Description |
63
56
  | --- | --- | --- | --- |
64
- | options | <code>object</code> | | The options to configure the Cobalt SDK. |
65
- | [options.token] | <code>string</code> | | The session token. |
66
- | [options.baseUrl] | <code>string</code> | <code>&quot;https://api.gocobalt.io&quot;</code> | The base URL of your Cobalt API. |
67
-
68
- <a name="Cobalt+token"></a>
69
-
70
- ### cobalt.token ⇒ <code>string</code>
71
- **Kind**: instance property of [<code>Cobalt</code>](#Cobalt)
72
- **Returns**: <code>string</code> - The session token.
73
- <a name="Cobalt+token"></a>
74
-
75
- ### cobalt.token ⇒ <code>string</code>
76
- **Kind**: instance property of [<code>Cobalt</code>](#Cobalt)
77
- **Returns**: <code>string</code> - The session token.
78
- <a name="Cobalt+baseUrl"></a>
79
-
80
- ### cobalt.baseUrl ⇒ <code>string</code>
81
- **Kind**: instance property of [<code>Cobalt</code>](#Cobalt)
82
- **Returns**: <code>string</code> - The base URL of cobalt API.
83
- <a name="Cobalt+installTemplate"></a>
84
-
85
- ### cobalt.installTemplate() ⇒ [<code>Promise.&lt;Workflow&gt;</code>](#Workflow)
86
- Install the given template.
87
-
88
- **Kind**: instance method of [<code>Cobalt</code>](#Cobalt)
89
- **Properties**
90
-
91
- | Name | Type | Description |
92
- | --- | --- | --- |
93
- | templateId | <code>string</code> | The ID of the template you want to install. |
94
- | udf | <code>object</code> | Custom key value pairs you want to store with the installed worklfow. |
95
-
96
- <a name="Cobalt+getAppConfig"></a>
97
-
98
- ### cobalt.getAppConfig(application) ⇒ [<code>Promise.&lt;AppConfig&gt;</code>](#AppConfig)
99
- Returns the configuration data for the specified application.
100
-
101
- **Kind**: instance method of [<code>Cobalt</code>](#Cobalt)
102
- **Returns**: [<code>Promise.&lt;AppConfig&gt;</code>](#AppConfig) - The specified application's configuration data.
103
-
104
- | Param | Type | Description |
105
- | --- | --- | --- |
106
- | application | <code>string</code> | The application ID. |
107
-
108
- <a name="Cobalt+getAppAuthStatus"></a>
109
-
110
- ### cobalt.getAppAuthStatus() ⇒ <code>Promise.&lt;boolean&gt;</code>
111
- Returns the auth status of the user for the specified application.
112
-
113
- **Kind**: instance method of [<code>Cobalt</code>](#Cobalt)
114
- **Returns**: <code>Promise.&lt;boolean&gt;</code> - The auth status of the user.
115
- **Properties**
116
-
117
- | Name | Type | Description |
118
- | --- | --- | --- |
119
- | application | <code>string</code> | The application type. |
120
-
121
- <a name="Cobalt+getAppAuthUrl"></a>
122
-
123
- ### cobalt.getAppAuthUrl() ⇒ <code>Promise.&lt;string&gt;</code>
124
- Returns the auth URL that users can use to authenticate themselves to the
125
- specified application.
126
-
127
- **Kind**: instance method of [<code>Cobalt</code>](#Cobalt)
128
- **Returns**: <code>Promise.&lt;string&gt;</code> - The auth URL where users can authenticate themselves.
129
- **Properties**
130
-
131
- | Name | Type | Description |
132
- | --- | --- | --- |
133
- | application | <code>string</code> | The application type. |
57
+ | options | <code>Object</code> | | The options to configure the Cobalt SDK. |
58
+ | [options.token] | <code>String</code> | | The session token. |
59
+ | [options.baseUrl] | <code>String</code> | <code>https://api.gocobalt.io</code> | The base URL of the Cobalt API. |
134
60
 
135
61
  <a name="Cobalt+oauth"></a>
136
62
 
137
- ### cobalt.oauth() ⇒ <code>Promise.&lt;boolean&gt;</code>
138
- Handle OAuth for the specified application.
63
+ ### cobalt.oauth(application) ⇒ <code>Promise.&lt;Boolean&gt;</code>
64
+ Handle OAuth for the specified native application.
139
65
 
140
66
  **Kind**: instance method of [<code>Cobalt</code>](#Cobalt)
141
- **Returns**: <code>Promise.&lt;boolean&gt;</code> - Whether the user authenticated.
142
- **Properties**
67
+ **Returns**: <code>Promise.&lt;Boolean&gt;</code> - Whether the user authenticated.
143
68
 
144
- | Name | Type | Description |
69
+ | Param | Type | Description |
145
70
  | --- | --- | --- |
146
- | application | <code>string</code> | The application type. |
71
+ | application | <code>String</code> | The application type. |
147
72
 
148
- <a name="Cobalt+setAppAuthData"></a>
73
+ <a name="Cobalt+auth"></a>
149
74
 
150
- ### cobalt.setAppAuthData() ⇒ <code>Promise.&lt;void&gt;</code>
75
+ ### cobalt.auth(application, payload) ⇒ <code>Promise.&lt;unknown&gt;</code>
151
76
  Save the auth data that user provides to authenticate themselves to the
152
- specified application.
77
+ specified native application.
153
78
 
154
79
  **Kind**: instance method of [<code>Cobalt</code>](#Cobalt)
155
- **Properties**
156
80
 
157
- | Name | Type | Description |
81
+ | Param | Type | Description |
158
82
  | --- | --- | --- |
159
- | application | <code>string</code> | The application type. |
160
- | payload | <code>object</code> | The key value pairs of auth data. |
161
- | appId | <code>object</code> | The application ID in case of custom applications. |
83
+ | application | <code>String</code> | The application type. |
84
+ | payload | <code>Object.&lt;string, (string\|number\|boolean)&gt;</code> | The key value pairs of auth data. |
162
85
 
163
- <a name="Cobalt+removeAppAuth"></a>
86
+ <a name="Cobalt+authCustom"></a>
164
87
 
165
- ### cobalt.removeAppAuth() ⇒ <code>Promise.&lt;void&gt;</code>
166
- Unauthorize the specified application and remove any associated data from Cobalt.
88
+ ### cobalt.authCustom(applicationId, payload) ⇒ <code>Promise.&lt;unknown&gt;</code>
89
+ Save the auth data that user provides to authenticate themselves to the
90
+ specified custom application.
167
91
 
168
92
  **Kind**: instance method of [<code>Cobalt</code>](#Cobalt)
169
- **Properties**
170
93
 
171
- | Name | Type | Description |
94
+ | Param | Type | Description |
172
95
  | --- | --- | --- |
173
- | application | <code>string</code> | The application type. |
174
- | appId | <code>string</code> | The application ID in case of custom applications. |
96
+ | applicationId | <code>String</code> | The application ID of the custom application. |
97
+ | payload | <code>Object.&lt;string, (string\|number\|boolean)&gt;</code> | The key value pairs of auth data. |
175
98
 
176
- <a name="Cobalt+getNodeConfiguration"></a>
99
+ <a name="Cobalt+checkAuth"></a>
177
100
 
178
- ### cobalt.getNodeConfiguration() ⇒ <code>Promise.&lt;Array.&lt;Field&gt;&gt;</code>
179
- Returns the node configuration data for dynamic fields.
101
+ ### cobalt.checkAuth(application) ⇒ <code>Promise.&lt;Boolean&gt;</code>
102
+ Returns the auth status of the user for the specified application.
180
103
 
181
104
  **Kind**: instance method of [<code>Cobalt</code>](#Cobalt)
182
- **Properties**
105
+ **Returns**: <code>Promise.&lt;Boolean&gt;</code> - The auth status of the user.
183
106
 
184
- | Name | Type | Description |
107
+ | Param | Type | Description |
185
108
  | --- | --- | --- |
186
- | workflowId | <code>string</code> | The ID of the workflow. |
187
- | nodeId | <code>string</code> | The ID of the node. |
188
- | fieldName | <code>string</code> | The field name for which config data is required. |
189
- | selectedValues | <code>object</code> | The input data already selected for the node. |
109
+ | application | <code>String</code> | The application type. |
190
110
 
191
- <a name="Cobalt+saveNode"></a>
111
+ <a name="Cobalt+removeAuth"></a>
192
112
 
193
- ### cobalt.saveNode() ⇒ [<code>Promise.&lt;Workflow&gt;</code>](#Workflow)
194
- Save the input data for the specified node.
113
+ ### cobalt.removeAuth(application, [applicationId]) ⇒ <code>Promise.&lt;void&gt;</code>
114
+ Unauthorize the specified application and remove any associated data from Cobalt.
195
115
 
196
116
  **Kind**: instance method of [<code>Cobalt</code>](#Cobalt)
197
- **Properties**
198
117
 
199
- | Name | Type | Description |
118
+ | Param | Type | Description |
200
119
  | --- | --- | --- |
201
- | workflowId | <code>string</code> | The ID of the workflow. |
202
- | nodeId | <code>string</code> | The ID of the node. |
203
- | inputData | <code>object</code> | The input data for the node. |
120
+ | application | <code>String</code> | The application type. |
121
+ | [applicationId] | <code>String</code> | The application ID in case of custom applications. |
204
122
 
205
- <a name="Cobalt+getWorkflowConfiguration"></a>
123
+ <a name="Cobalt+getAppConfig"></a>
206
124
 
207
- ### cobalt.getWorkflowConfiguration() ⇒ [<code>Promise.&lt;Workflow&gt;</code>](#Workflow)
208
- Returns the workflow configuration data.
125
+ ### cobalt.getAppConfig(application) ⇒ [<code>Promise.&lt;AppConfig&gt;</code>](#AppConfig)
126
+ Returns the configuration data for the specified application.
209
127
 
210
128
  **Kind**: instance method of [<code>Cobalt</code>](#Cobalt)
211
- **Properties**
129
+ **Returns**: [<code>Promise.&lt;AppConfig&gt;</code>](#AppConfig) - The specified application's configuration data.
212
130
 
213
- | Name | Type | Description |
131
+ | Param | Type | Description |
214
132
  | --- | --- | --- |
215
- | workflowId | <code>string</code> | The ID of the workflow. |
133
+ | application | <code>String</code> | The application ID. |
216
134
 
217
- <a name="Cobalt+activateWorkflow"></a>
135
+ <a name="Cobalt+install"></a>
218
136
 
219
- ### cobalt.activateWorkflow() ⇒ <code>Promise.&lt;void&gt;</code>
220
- Activate the given installed workflow.
137
+ ### cobalt.install(applicationId, payload) ⇒ [<code>Promise.&lt;AppInstance&gt;</code>](#AppInstance)
138
+ Install the specified application.
221
139
 
222
140
  **Kind**: instance method of [<code>Cobalt</code>](#Cobalt)
223
- **Properties**
141
+ **Returns**: [<code>Promise.&lt;AppInstance&gt;</code>](#AppInstance) - The specified application installation.
224
142
 
225
- | Name | Type | Description |
143
+ | Param | Type | Description |
226
144
  | --- | --- | --- |
227
- | workflowId | <code>string</code> | The ID of the workflow you want to activate. |
145
+ | applicationId | <code>String</code> | The application ID. |
146
+ | payload | [<code>AppInstance</code>](#AppInstance) | The install payload. |
228
147
 
229
- <a name="Cobalt+activateWorkflows"></a>
148
+ <a name="Cobalt+getInstallation"></a>
230
149
 
231
- ### cobalt.activateWorkflows() ⇒ <code>Promise.&lt;void&gt;</code>
232
- Activate the given installed workflows.
150
+ ### cobalt.getInstallation(applicationId, installationId) ⇒ [<code>Promise.&lt;AppInstance&gt;</code>](#AppInstance)
151
+ Returns the specified application installation.
233
152
 
234
153
  **Kind**: instance method of [<code>Cobalt</code>](#Cobalt)
235
- **Properties**
154
+ **Returns**: [<code>Promise.&lt;AppInstance&gt;</code>](#AppInstance) - The specified application installation.
236
155
 
237
- | Name | Type | Description |
156
+ | Param | Type | Description |
238
157
  | --- | --- | --- |
239
- | workflowIds | <code>string</code> | The list of IDs of the workflows you want to activate. |
158
+ | applicationId | <code>String</code> | The application ID. |
159
+ | installationId | <code>String</code> | The installation ID of the application instance. |
240
160
 
241
- <a name="Cobalt+toggleWorkflowStatus"></a>
161
+ <a name="Cobalt+updateInstallation"></a>
242
162
 
243
- ### cobalt.toggleWorkflowStatus() ⇒ [<code>Promise.&lt;Workflow&gt;</code>](#Workflow)
244
- Toggle the status of the specified workflow.
163
+ ### cobalt.updateInstallation(applicationId, installationId, payload) ⇒ [<code>Promise.&lt;AppInstance&gt;</code>](#AppInstance)
164
+ Update the specified application installation.
245
165
 
246
166
  **Kind**: instance method of [<code>Cobalt</code>](#Cobalt)
247
- **Properties**
167
+ **Returns**: [<code>Promise.&lt;AppInstance&gt;</code>](#AppInstance) - The specified application installation.
248
168
 
249
- | Name | Type | Description |
169
+ | Param | Type | Description |
250
170
  | --- | --- | --- |
251
- | workflowId | <code>string</code> | The ID of the workflow. |
171
+ | applicationId | <code>String</code> | The application ID. |
172
+ | installationId | <code>String</code> | The installation ID of the application instance. |
173
+ | payload | [<code>AppInstance</code>](#AppInstance) | The update payload. |
252
174
 
253
- <a name="Cobalt+deleteWorkflow"></a>
175
+ <a name="Cobalt+deleteInstallation"></a>
254
176
 
255
- ### cobalt.deleteWorkflow() ⇒ <code>Promise.&lt;unknown&gt;</code>
256
- Delete the specified workflow.
177
+ ### cobalt.deleteInstallation(applicationId, installationId) ⇒ <code>Promise.&lt;unknown&gt;</code>
178
+ Delete the specified installation.
257
179
 
258
180
  **Kind**: instance method of [<code>Cobalt</code>](#Cobalt)
259
- **Properties**
260
181
 
261
- | Name | Type | Description |
182
+ | Param | Type | Description |
262
183
  | --- | --- | --- |
263
- | workflowId | <code>string</code> | The ID of the workflow. |
184
+ | applicationId | <code>String</code> | The application ID. |
185
+ | installationId | <code>String</code> | The installation ID of the application instance. |
264
186
 
265
- <a name="Field"></a>
187
+ <a name="AppConfig"></a>
266
188
 
267
- ## Field : <code>object</code>
268
- The Node Field object available for configuration.
189
+ ## AppConfig : <code>object</code>
190
+ The configuration data for an application.
269
191
 
270
192
  **Kind**: global typedef
271
193
  **Properties**
272
194
 
273
195
  | Name | Type | Description |
274
196
  | --- | --- | --- |
275
- | name | <code>string</code> | The field name. |
276
- | type | <code>string</code> | The input type of the field. |
277
- | placeholder | <code>string</code> | The placeholder text for the field. |
278
- | required | <code>boolean</code> | Whether the field is required. |
197
+ | application_data_slots | <code>Array.&lt;DataSlot&gt;</code> | Array of application data slots. |
198
+ | workflows | [<code>Array.&lt;Workflow&gt;</code>](#Workflow) | Array of workflows. |
279
199
 
280
- <a name="Node"></a>
200
+ <a name="AppInstance"></a>
281
201
 
282
- ## Node : <code>object</code>
283
- The Node object available for configuration.
202
+ ## AppInstance : <code>Object</code>
203
+ An installed application.
284
204
 
285
205
  **Kind**: global typedef
286
206
  **Properties**
287
207
 
288
208
  | Name | Type | Description |
289
209
  | --- | --- | --- |
290
- | node_id | <code>string</code> | The ID of the installed workflow. |
291
- | node_name | <code>string</code> | The Name of the installed workflow. |
292
- | fields | [<code>Array.&lt;Field&gt;</code>](#Field) | The applications integrated in the workflow. |
210
+ | [installation_id] | <code>String</code> | Unique ID for the installation. |
211
+ | application_data_slots | <code>Object.&lt;string, (string\|number\|boolean)&gt;</code> | A map of application data slots and their values. |
212
+ | workflows | [<code>Array.&lt;Workflow&gt;</code>](#Workflow) | Whether the workflow is enabled. |
293
213
 
294
214
  <a name="Workflow"></a>
295
215
 
296
- ## Workflow : <code>object</code>
297
- The installed workflow.
298
-
299
- **Kind**: global typedef
300
- **Properties**
301
-
302
- | Name | Type | Description |
303
- | --- | --- | --- |
304
- | workflow_id | <code>string</code> | The ID of the installed workflow. |
305
- | applications | <code>Array.&lt;unknown&gt;</code> | The applications integrated in the workflow. |
306
- | configure | [<code>Array.&lt;Node&gt;</code>](#Node) | The configuration data for the workflow. |
307
-
308
- <a name="AppAuthStatus"></a>
309
-
310
- ## AppAuthStatus : <code>object</code>
311
- The auth status of the user for an application.
312
-
313
- **Kind**: global typedef
314
- **Properties**
315
-
316
- | Name | Type | Description |
317
- | --- | --- | --- |
318
- | status | <code>boolean</code> | Whether the user has authenticated with this application. |
319
-
320
- <a name="AppConfig"></a>
321
-
322
- ## AppConfig : <code>object</code>
323
- The configuration data for an application.
216
+ ## Workflow : <code>Object</code>
217
+ The workflow.
324
218
 
325
219
  **Kind**: global typedef
326
220
  **Properties**
327
221
 
328
222
  | Name | Type | Description |
329
223
  | --- | --- | --- |
330
- | application_data_slots | <code>Array.&lt;DataSlot&gt;</code> | Array of application data slots. |
331
- | templates | <code>Array.&lt;Template&gt;</code> | Array of workflow templates. |
224
+ | id | <code>String</code> | The ID of the workflow. |
225
+ | enabled | <code>Boolean</code> | Whether the workflow is enabled. |
226
+ | data_slots | <code>Object.&lt;string, (string\|number\|boolean)&gt;</code> | A map of workflow's data slots and their values. |
332
227
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cobaltio/cobalt-js",
3
- "version": "0.1.1",
3
+ "version": "1.0.1",
4
4
  "description": "Cobalt frontend SDK",
5
5
  "main": "./cobalt.js",
6
6
  "scripts": {
@@ -29,7 +29,6 @@
29
29
  },
30
30
  "homepage": "https://github.com/Breakout-Embed/cobalt-js#readme",
31
31
  "devDependencies": {
32
- "foodoc": "^0.0.9",
33
32
  "jsdoc": "^4.0.0",
34
33
  "jsdoc-to-markdown": "^8.0.0",
35
34
  "uglify-js": "^3.17.4"