@farris/jit-engine 1.3.325 → 1.3.326

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.
package/bin/index.js CHANGED
File without changes
@@ -3,8 +3,9 @@
3
3
  -attrs.class = variable.appearance && variable.appearance.class;
4
4
  -attrs.style = variable.appearance && variable.appearance.style;
5
5
  -attrs.id = variable.replacedId? String(variable.replacedId) : undefined
6
- -attrs.ref = variable.replacedId? String(variable.replacedId) : undefined
7
- -attrs.bindingpath = variable.binding && variable.binding.path ? variable.binding.path : undefined
6
+ -var divAttrs = {};
7
+ -divAttrs.ref = variable.replacedId? String(variable.replacedId+"_div") : undefined
8
+ -divAttrs.bindingpath = variable.binding && variable.binding.path ? variable.binding.path : undefined
8
9
  -var visible = variable.visible ? String(variable.visible.value) : 'false';
9
10
  -var require = variable.require ? String(variable.require.value) : undefined;
10
11
  -var readonly = variable.readonly ? String(variable.readonly.value) : undefined;
@@ -17,7 +18,7 @@
17
18
  div(
18
19
  v-if=visible
19
20
  class="fm-input-wrapper"
20
- )
21
+ )&attributes(divAttrs)
21
22
  fm-calendar-input(
22
23
  v-model=binding
23
24
  :label = variable.title? variable.i18nTitle : undefined
@@ -2,8 +2,9 @@
2
2
  -var attrs = {};
3
3
  -attrs.class = variable.appearance && variable.appearance.class;
4
4
  -attrs.style = variable.appearance && variable.appearance.style;
5
- -attrs.ref = variable.replacedId? String(variable.replacedId) : undefined
6
- -attrs.bindingpath = variable.binding && variable.binding.path ? variable.binding.path : undefined
5
+ -var divAttrs = {};
6
+ -divAttrs.ref = variable.replacedId? String(variable.replacedId+"_div") : undefined
7
+ -divAttrs.bindingpath = variable.binding && variable.binding.path ? variable.binding.path : undefined
7
8
  -var checkerStyle = variable.checkerWidth ? { width: variable.checkerWidth + 'px' } : undefined
8
9
  -var visible = variable.visible ? String(variable.visible.value) : 'false';
9
10
  -var require = variable.require ? String(variable.require.value) : undefined;
@@ -18,7 +19,7 @@
18
19
  div(
19
20
  v-if=visible
20
21
  class="fm-input-wrapper"
21
- )
22
+ )&attributes(divAttrs)
22
23
  fm-input(
23
24
  center
24
25
  :required=require
@@ -3,8 +3,9 @@
3
3
  -attrs.class = variable.appearance && variable.appearance.class;
4
4
  -attrs.style = variable.appearance && variable.appearance.style;
5
5
  -attrs.id = variable.replacedId? String(variable.replacedId) : undefined
6
- -attrs.ref = variable.replacedId? String(variable.replacedId) : undefined
7
- -attrs.bindingpath = variable.binding && variable.binding.path ? variable.binding.path : undefined
6
+ -var divAttrs = {};
7
+ -divAttrs.ref = variable.replacedId? String(variable.replacedId+"_div") : undefined
8
+ -divAttrs.bindingpath = variable.binding && variable.binding.path ? variable.binding.path : undefined
8
9
  -var visible = variable.visible ? String(variable.visible.value) : 'false';
9
10
  -var require = variable.require ? String(variable.require.value) : undefined;
10
11
  -var readonly = variable.readonly ? String(variable.readonly.value) : undefined;
@@ -17,7 +18,7 @@
17
18
  div(
18
19
  v-if=visible
19
20
  class="fm-input-wrapper"
20
- )
21
+ )&attributes(divAttrs)
21
22
  component(
22
23
  v-model=binding
23
24
  :label = variable.title? variable.i18nTitle : undefined
@@ -3,8 +3,9 @@
3
3
  -attrs.class = variable.appearance && variable.appearance.class;
4
4
  -attrs.style = variable.appearance && variable.appearance.style;
5
5
  -attrs.id = variable.replacedId? String(variable.replacedId) : undefined
6
- -attrs.ref = variable.replacedId? String(variable.replacedId) : undefined
7
- -attrs.bindingpath = variable.binding && variable.binding.path ? variable.binding.path : undefined
6
+ -var divAttrs = {};
7
+ -divAttrs.ref = variable.replacedId? String(variable.replacedId+"_div") : undefined
8
+ -divAttrs.bindingpath = variable.binding && variable.binding.path ? variable.binding.path : undefined
8
9
  -var visible = variable.visible ? String(variable.visible.value) : 'false';
9
10
  -var require = variable.require ? String(variable.require.value) : undefined;
10
11
  -var readonly = variable.readonly ? String(variable.readonly.value) : undefined;
@@ -18,7 +19,7 @@
18
19
  div(
19
20
  v-if=visible
20
21
  class="fm-input-wrapper"
21
- )
22
+ )&attributes(divAttrs)
22
23
  fm-datetime-picker(
23
24
  v-model=binding
24
25
  :label = variable.title? variable.i18nTitle : undefined
@@ -3,8 +3,9 @@
3
3
  -attrs.class = variable.appearance && variable.appearance.class;
4
4
  -attrs.style = variable.appearance && variable.appearance.style;
5
5
  -attrs.id = variable.replacedId? String(variable.replacedId) : undefined
6
- -attrs.ref = variable.replacedId? String(variable.replacedId) : undefined
7
- -attrs.bindingpath = variable.binding && variable.binding.path ? variable.binding.path : undefined
6
+ -var divAttrs = {};
7
+ -divAttrs.ref = variable.replacedId? String(variable.replacedId+"_div") : undefined
8
+ -divAttrs.bindingpath = variable.binding && variable.binding.path ? variable.binding.path : undefined
8
9
  -var visible = variable.visible ? String(variable.visible.value) : 'false';
9
10
  -var require = variable.require ? String(variable.require.value) : undefined;
10
11
  -var readonly = variable.readonly ? String(variable.readonly.value) : undefined;
@@ -16,7 +17,7 @@
16
17
  div(
17
18
  v-if=visible
18
19
  class="fm-input-wrapper"
19
- )
20
+ )&attributes(divAttrs)
20
21
  fm-lookup-department(
21
22
  v-model=binding
22
23
  :label = variable.title? variable.i18nTitle : undefined
@@ -3,8 +3,9 @@
3
3
  -attrs.class = variable.appearance && variable.appearance.class;
4
4
  -attrs.style = variable.appearance && variable.appearance.style;
5
5
  -attrs.id = variable.replacedId? String(variable.replacedId) : undefined
6
- -attrs.ref = variable.replacedId? String(variable.replacedId) : undefined
7
- -attrs.bindingpath = variable.binding && variable.binding.path ? variable.binding.path : undefined
6
+ -var divAttrs = {};
7
+ -divAttrs.ref = variable.replacedId? String(variable.replacedId+"_div") : undefined
8
+ -divAttrs.bindingpath = variable.binding && variable.binding.path ? variable.binding.path : undefined
8
9
  -var visible = variable.visible ? String(variable.visible.value) : 'false';
9
10
  -var require = variable.require ? String(variable.require.value) : undefined;
10
11
  -var readonly = variable.readonly ? String(variable.readonly.value) : undefined;
@@ -17,7 +18,7 @@
17
18
  div(
18
19
  v-if=visible
19
20
  class="fm-input-wrapper"
20
- )
21
+ )&attributes(divAttrs)
21
22
  fm-lookup-employee(
22
23
  v-model=binding
23
24
  :required=require
@@ -3,8 +3,9 @@
3
3
  -attrs.class = variable.appearance && variable.appearance.class;
4
4
  -attrs.style = variable.appearance && variable.appearance.style;
5
5
  -attrs.id = variable.replacedId? String(variable.replacedId) : undefined
6
- -attrs.ref = variable.replacedId? String(variable.replacedId) : undefined
7
- -attrs.bindingpath = variable.binding && variable.binding.path ? variable.binding.path : undefined
6
+ -var divAttrs = {};
7
+ -divAttrs.ref = variable.replacedId? String(variable.replacedId+"_div") : undefined
8
+ -divAttrs.bindingpath = variable.binding && variable.binding.path ? variable.binding.path : undefined
8
9
  -var visible = variable.visible ? String(variable.visible.value) : 'false';
9
10
  -var require = variable.require ? String(variable.require.value) : undefined;
10
11
  -var readonly = variable.readonly ? String(variable.readonly.value) : undefined;
@@ -16,7 +17,7 @@
16
17
  div(
17
18
  v-if=visible
18
19
  class="fm-input-wrapper"
19
- )
20
+ )&attributes(divAttrs)
20
21
  fm-lookup-input(
21
22
  v-model=binding
22
23
  :label = variable.title? variable.i18nTitle : undefined
@@ -4,8 +4,9 @@
4
4
  -attrs.class = variable.appearance && variable.appearance.class;
5
5
  -attrs.style = variable.appearance && variable.appearance.style;
6
6
  -attrs.id = variable.replacedId? String(variable.replacedId) : undefined
7
- -attrs.ref = variable.replacedId? String(variable.replacedId) : undefined
8
- -attrs.bindingpath = variable.binding && variable.binding.path ? variable.binding.path : undefined
7
+ -var divAttrs = {};
8
+ -divAttrs.ref = variable.replacedId? String(variable.replacedId+"_div") : undefined
9
+ -divAttrs.bindingpath = variable.binding && variable.binding.path ? variable.binding.path : undefined
9
10
  -var visible = variable.visible ? String(variable.visible.value) : 'false';
10
11
  -var require = variable.require ? String(variable.require.value) : undefined;
11
12
  -var readonly = variable.readonly ? String(variable.readonly.value) : undefined;
@@ -17,7 +18,7 @@
17
18
  div(
18
19
  v-if=visible
19
20
  class="fm-input-wrapper"
20
- )
21
+ )&attributes(divAttrs)
21
22
  fm-input(
22
23
  v-model=binding
23
24
  :label = variable.title? variable.i18nTitle : undefined
@@ -3,8 +3,9 @@
3
3
  -attrs.class = variable.appearance && variable.appearance.class;
4
4
  -attrs.style = variable.appearance && variable.appearance.style;
5
5
  -attrs.id = variable.replacedId? String(variable.replacedId) : undefined
6
- -attrs.ref = variable.replacedId? String(variable.replacedId) : undefined
7
- -attrs.bindingpath = variable.binding && variable.binding.path ? variable.binding.path : undefined
6
+ -var divAttrs = {};
7
+ -divAttrs.ref = variable.replacedId? String(variable.replacedId+"_div") : undefined
8
+ -divAttrs.bindingpath = variable.binding && variable.binding.path ? variable.binding.path : undefined
8
9
  -var visible = variable.visible ? String(variable.visible.value) : 'false';
9
10
  -var require = variable.require ? String(variable.require.value) : undefined;
10
11
  -var readonly = variable.readonly ? String(variable.readonly.value) : undefined;
@@ -15,7 +16,7 @@
15
16
  div(
16
17
  v-if=visible
17
18
  class="fm-input-wrapper"
18
- )
19
+ )&attributes(divAttrs)
19
20
  fm-area-picker(
20
21
  v-model=binding
21
22
  :label = variable.title? variable.i18nTitle : undefined
@@ -3,8 +3,9 @@
3
3
  -attrs.class = variable.appearance && variable.appearance.class;
4
4
  -attrs.style = variable.appearance && variable.appearance.style;
5
5
  -attrs.id = variable.replacedId? String(variable.replacedId) : undefined
6
- -attrs.ref = variable.replacedId? String(variable.replacedId) : undefined
7
- -attrs.bindingpath = variable.binding && variable.binding.path ? variable.binding.path : undefined
6
+ -var divAttrs = {};
7
+ -divAttrs.ref = variable.replacedId? String(variable.replacedId+"_div") : undefined
8
+ -divAttrs.bindingpath = variable.binding && variable.binding.path ? variable.binding.path : undefined
8
9
  -var visible = variable.visible ? String(variable.visible.value) : 'false';
9
10
  -var require = variable.require ? String(variable.require.value) : undefined;
10
11
  -var readonly = variable.readonly ? String(variable.readonly.value) : undefined;
@@ -19,7 +20,7 @@
19
20
  div(
20
21
  v-if=visible
21
22
  class="fm-input-wrapper"
22
- )
23
+ )&attributes(divAttrs)
23
24
  fm-city-picker(
24
25
  v-model:text=bindingtext
25
26
  v-model:value=bindingvalue
@@ -3,8 +3,9 @@
3
3
  -attrs.class = variable.appearance && variable.appearance.class;
4
4
  -attrs.style = variable.appearance && variable.appearance.style;
5
5
  -attrs.id = variable.replacedId? String(variable.replacedId) : undefined
6
- -attrs.ref = variable.replacedId? String(variable.replacedId) : undefined
7
- -attrs.bindingpath = variable.binding && variable.binding.path ? variable.binding.path : undefined
6
+ -var divAttrs = {};
7
+ -divAttrs.ref = variable.replacedId? String(variable.replacedId+"_div") : undefined
8
+ -divAttrs.bindingpath = variable.binding && variable.binding.path ? variable.binding.path : undefined
8
9
  -var visible = variable.visible ? String(variable.visible.value) : 'false';
9
10
  -var require = variable.require ? String(variable.require.value) : undefined;
10
11
  -var readonly = variable.readonly ? String(variable.readonly.value) : undefined;
@@ -16,7 +17,7 @@
16
17
  div(
17
18
  v-if=visible
18
19
  class="fm-input-wrapper"
19
- )
20
+ )&attributes(divAttrs)
20
21
  fm-link-relation(
21
22
  v-model=binding
22
23
  :label = variable.title? variable.i18nTitle : undefined
@@ -3,8 +3,9 @@
3
3
  -attrs.class = variable.appearance && variable.appearance.class;
4
4
  -attrs.style = variable.appearance && variable.appearance.style;
5
5
  -attrs.id = variable.replacedId? String(variable.replacedId) : undefined
6
- -attrs.ref = variable.replacedId? String(variable.replacedId) : undefined
7
- -attrs.bindingpath = variable.binding && variable.binding.path ? variable.binding.path : undefined
6
+ -var divAttrs = {};
7
+ -divAttrs.ref = variable.replacedId? String(variable.replacedId+"_div") : undefined
8
+ -divAttrs.bindingpath = variable.binding && variable.binding.path ? variable.binding.path : undefined
8
9
  -var visible = variable.visible ? String(variable.visible.value) : 'false';
9
10
  -var require = variable.require ? String(variable.require.value) : undefined;
10
11
  -var readonly = variable.readonly ? String(variable.readonly.value) : undefined;
@@ -16,7 +17,7 @@
16
17
  div(
17
18
  v-if=visible
18
19
  class="fm-input-wrapper"
19
- )
20
+ )&attributes(divAttrs)
20
21
  fm-picker(
21
22
  v-model=binding
22
23
  :placeholder = variable.placeholder? variable.i18nPlaceholder : undefined
@@ -2,8 +2,9 @@
2
2
  -var attrs = {};
3
3
  -attrs.class = variable.appearance && variable.appearance.class;
4
4
  -attrs.style = variable.appearance && variable.appearance.style;
5
- -attrs.ref = variable.replacedId? String(variable.replacedId) : undefined
6
- -attrs.bindingpath = variable.binding && variable.binding.path ? variable.binding.path : undefined
5
+ -var divAttrs = {};
6
+ -divAttrs.ref = variable.replacedId? String(variable.replacedId+"_div") : undefined
7
+ -divAttrs.bindingpath = variable.binding && variable.binding.path ? variable.binding.path : undefined
7
8
  -var checkerStyle = variable.checkerWidth ? { width: variable.checkerWidth + 'px' } : undefined
8
9
  -var visible = variable.visible ? String(variable.visible.value) : 'false';
9
10
  -var require = variable.require ? String(variable.require.value) : undefined;
@@ -18,7 +19,7 @@
18
19
  div(
19
20
  v-if=visible
20
21
  class="fm-input-wrapper"
21
- )
22
+ )&attributes(divAttrs)
22
23
  fm-input(
23
24
  center
24
25
  :label = variable.title? variable.i18nTitle: undefined
@@ -2,8 +2,9 @@
2
2
  -var attrs = {};
3
3
  -attrs.class = variable.appearance && variable.appearance.class;
4
4
  -attrs.style = variable.appearance && variable.appearance.style;
5
- -attrs.ref = variable.replacedId? String(variable.replacedId) : undefined
6
- -attrs.bindingpath = variable.binding && variable.binding.path ? variable.binding.path : undefined
5
+ -var divAttrs = {};
6
+ -divAttrs.ref = variable.replacedId? String(variable.replacedId+"_div") : undefined
7
+ -divAttrs.bindingpath = variable.binding && variable.binding.path ? variable.binding.path : undefined
7
8
  -var placeholder = variable.placeholder? String(variable.placeholder) : undefined
8
9
  -var id = variable.replacedId? String(variable.replacedId) : undefined
9
10
  -var label = variable.title? String(variable.title) : undefined
@@ -30,7 +31,7 @@ else
30
31
  div(
31
32
  v-if=visible
32
33
  class="fm-input-wrapper"
33
- )
34
+ )&attributes(divAttrs)
34
35
  fm-input(
35
36
  id=id
36
37
  class="fm-input-vertical"
@@ -4,8 +4,9 @@
4
4
  -attrs.class = variable.appearance && variable.appearance.class;
5
5
  -attrs.style = variable.appearance && variable.appearance.style;
6
6
  -attrs.id = variable.replacedId? String(variable.replacedId) : undefined
7
- -attrs.ref = variable.replacedId? String(variable.replacedId) : undefined
8
- -attrs.bindingpath = variable.binding && variable.binding.path ? variable.binding.path : undefined
7
+ -var divAttrs = {};
8
+ -divAttrs.ref = variable.replacedId? String(variable.replacedId+"_div") : undefined
9
+ -divAttrs.bindingpath = variable.binding && variable.binding.path ? variable.binding.path : undefined
9
10
  -var visible = variable.visible ? String(variable.visible.value) : 'false';
10
11
  -var require = variable.require ? String(variable.require.value) : undefined;
11
12
  -var readonly = variable.readonly ? String(variable.readonly.value) : undefined;
@@ -15,7 +16,7 @@
15
16
  div(
16
17
  v-if=visible
17
18
  class="fm-input-wrapper"
18
- )
19
+ )&attributes(divAttrs)
19
20
  fm-switch-cell(
20
21
  v-model=binding
21
22
  :title = variable.title? variable.i18nTitle: undefined
@@ -4,8 +4,9 @@
4
4
  -attrs.class = variable.appearance && variable.appearance.class;
5
5
  -attrs.style = variable.appearance && variable.appearance.style;
6
6
  -attrs.id = variable.replacedId? String(variable.replacedId) : undefined
7
- -attrs.ref = variable.replacedId? String(variable.replacedId) : undefined
8
- -attrs.bindingpath = variable.binding && variable.binding.path ? variable.binding.path : undefined
7
+ -var divAttrs = {};
8
+ -divAttrs.ref = variable.replacedId? String(variable.replacedId+"_div") : undefined
9
+ -divAttrs.bindingpath = variable.binding && variable.binding.path ? variable.binding.path : undefined
9
10
  -var visible = variable.visible ? String(variable.visible.value) : 'false';
10
11
  -var require = variable.require ? String(variable.require.value) : undefined;
11
12
  -var readonly = variable.readonly ? String(variable.readonly.value) : undefined;
@@ -16,7 +17,7 @@
16
17
  div(
17
18
  v-if=visible
18
19
  class="fm-input-wrapper"
19
- )
20
+ )&attributes(divAttrs)
20
21
  fm-input(
21
22
  v-model=binding
22
23
  :label = variable.title? variable.i18nTitle : undefined
@@ -4,8 +4,9 @@
4
4
  -attrs.class = variable.appearance && variable.appearance.class;
5
5
  -attrs.style = variable.appearance && variable.appearance.style;
6
6
  -attrs.id = variable.replacedId? String(variable.replacedId) : undefined
7
- -attrs.ref = variable.replacedId? String(variable.replacedId) : undefined
8
- -attrs.bindingpath = variable.binding && variable.binding.path ? variable.binding.path : undefined
7
+ -var divAttrs = {};
8
+ -divAttrs.ref = variable.replacedId? String(variable.replacedId+"_div") : undefined
9
+ -divAttrs.bindingpath = variable.binding && variable.binding.path ? variable.binding.path : undefined
9
10
  -var visible = variable.visible ? String(variable.visible.value) : 'false';
10
11
  -var require = variable.require ? String(variable.require.value) : undefined;
11
12
  -var readonly = variable.readonly ? String(variable.readonly.value) : undefined;
@@ -18,7 +19,7 @@
18
19
  div(
19
20
  v-if=visible
20
21
  class="fm-input-wrapper"
21
- )
22
+ )&attributes(divAttrs)
22
23
  fm-input(
23
24
  ref=variable.id?"" + variable.id:undefined
24
25
  v-model=binding
@@ -4,8 +4,9 @@
4
4
  -attrs.class = variable.appearance && variable.appearance.class;
5
5
  -attrs.style = variable.appearance && variable.appearance.style;
6
6
  -attrs.id = variable.replacedId? String(variable.replacedId) : undefined
7
- -attrs.ref = variable.replacedId? String(variable.replacedId) : undefined
8
- -attrs.bindingpath = variable.binding && variable.binding.path ? variable.binding.path : undefined
7
+ -var divAttrs = {};
8
+ -divAttrs.ref = variable.replacedId? String(variable.replacedId+"_div") : undefined
9
+ -divAttrs.bindingpath = variable.binding && variable.binding.path ? variable.binding.path : undefined
9
10
  -var visible = variable.visible ? String(variable.visible.value) : 'false';
10
11
  -var require = variable.require ? String(variable.require.value) : undefined;
11
12
  -var readonly = variable.readonly ? String(variable.readonly.value) : undefined;
@@ -17,7 +18,7 @@
17
18
  div(
18
19
  v-if=visible
19
20
  class="fm-input-wrapper"
20
- )
21
+ )&attributes(divAttrs)
21
22
  fm-input(
22
23
  v-model=binding
23
24
  :label = variable.title? variable.i18nTitle : undefined
@@ -3,8 +3,9 @@
3
3
  -attrs.class = variable.appearance && variable.appearance.class;
4
4
  -attrs.style = variable.appearance && variable.appearance.style;
5
5
  -attrs.id = variable.replacedId? String(variable.replacedId) : undefined
6
- -attrs.ref = variable.replacedId? String(variable.replacedId) : undefined
7
- -attrs.bindingpath = variable.binding && variable.binding.path ? variable.binding.path : undefined
6
+ -var divAttrs = {};
7
+ -divAttrs.ref = variable.replacedId? String(variable.replacedId+"_div") : undefined
8
+ -divAttrs.bindingpath = variable.binding && variable.binding.path ? variable.binding.path : undefined
8
9
  -var visible = variable.visible ? String(variable.visible.value) : 'false';
9
10
  -var require = variable.require ? String(variable.require.value) : undefined;
10
11
  -var readonly = variable.readonly ? String(variable.readonly.value) : undefined;
@@ -16,7 +17,7 @@
16
17
  div(
17
18
  v-if=visible
18
19
  class="fm-input-wrapper"
19
- )
20
+ )&attributes(divAttrs)
20
21
  fm-scan-input(
21
22
  v-model=binding
22
23
  :label = variable.title? variable.i18nTitle : undefined
@@ -3,8 +3,9 @@
3
3
  -attrs.class = variable.appearance && variable.appearance.class;
4
4
  -attrs.style = variable.appearance && variable.appearance.style;
5
5
  -attrs.id = variable.replacedId? String(variable.replacedId) : undefined
6
- -attrs.ref = variable.replacedId? String(variable.replacedId) : undefined
7
- -attrs.bindingpath = variable.binding && variable.binding.path ? variable.binding.path : undefined
6
+ -var divAttrs = {};
7
+ -divAttrs.ref = variable.replacedId? String(variable.replacedId+"_div") : undefined
8
+ -divAttrs.bindingpath = variable.binding && variable.binding.path ? variable.binding.path : undefined
8
9
  -var visible = variable.visible ? String(variable.visible.value) : 'false';
9
10
  -var require = variable.require ? String(variable.require.value) : undefined;
10
11
  -var readonly = variable.readonly ? String(variable.readonly.value) : undefined;
@@ -16,7 +17,7 @@
16
17
  div(
17
18
  v-if=visible
18
19
  class="fm-input-wrapper"
19
- )
20
+ )&attributes(divAttrs)
20
21
  fm-telphone-input(
21
22
  v-model=binding
22
23
  :label = variable.title? variable.i18nTitle : undefined
package/package.json CHANGED
@@ -1,57 +1,57 @@
1
- {
2
- "name": "@farris/jit-engine",
3
- "version": "1.3.325",
4
- "description": "",
5
- "main": "./lib/index.js",
6
- "bin": {
7
- "jit": "./bin/index.js"
8
- },
9
- "engines": {
10
- "node": ">= 6.9.0",
11
- "npm": ">= 3.0.0"
12
- },
13
- "files": [
14
- "lib/",
15
- "bin/",
16
- "ioc.config"
17
- ],
18
- "scripts": {
19
- "build": "npm run build-ts && npm run copy-static-assets",
20
- "build-q": "npm run build-ts",
21
- "test": "jest --coverage ",
22
- "watch-test": "npm run test --watchAll",
23
- "build-ts": "tsc",
24
- "tslint": "tslint -c tslint.json -p tsconfig.json",
25
- "copy-static-assets": "ts-node copyStaticAssets.ts"
26
- },
27
- "keywords": [
28
- "jit",
29
- "engine",
30
- "jit-engine"
31
- ],
32
- "author": "Noah",
33
- "license": "ISC",
34
- "dependencies": {
35
- "fs-extra": "^8.1.0",
36
- "lodash": "^4.17.10",
37
- "prettier": "^1.18.2",
38
- "pug": "^2.0.0-rc.4",
39
- "read-package-tree": "^5.3.1",
40
- "typescript-ioc": "^1.2.4",
41
- "yargs": "^12.0.1"
42
- },
43
- "devDependencies": {
44
- "@types/fs-extra": "^8.1.1",
45
- "@types/jest": "24.0.15",
46
- "@types/lodash": "^4.14.91",
47
- "@types/node": "^12.6.1",
48
- "@types/prettier": "^1.18.0",
49
- "@types/pug": "^2.0.4",
50
- "@types/yargs": "^11.1.1",
51
- "jest": "^24.8.0",
52
- "ts-jest": "^24.0.2",
53
- "ts-node": "^8.3.0",
54
- "tslint": "^5.18.0",
55
- "typescript": "^3.5.3"
56
- }
1
+ {
2
+ "name": "@farris/jit-engine",
3
+ "version": "1.3.326",
4
+ "description": "",
5
+ "main": "./lib/index.js",
6
+ "bin": {
7
+ "jit": "./bin/index.js"
8
+ },
9
+ "engines": {
10
+ "node": ">= 6.9.0",
11
+ "npm": ">= 3.0.0"
12
+ },
13
+ "files": [
14
+ "lib/",
15
+ "bin/",
16
+ "ioc.config"
17
+ ],
18
+ "scripts": {
19
+ "build": "npm run build-ts && npm run copy-static-assets",
20
+ "build-q": "npm run build-ts",
21
+ "test": "jest --coverage ",
22
+ "watch-test": "npm run test --watchAll",
23
+ "build-ts": "tsc",
24
+ "tslint": "tslint -c tslint.json -p tsconfig.json",
25
+ "copy-static-assets": "ts-node copyStaticAssets.ts"
26
+ },
27
+ "keywords": [
28
+ "jit",
29
+ "engine",
30
+ "jit-engine"
31
+ ],
32
+ "author": "Noah",
33
+ "license": "ISC",
34
+ "dependencies": {
35
+ "fs-extra": "^8.1.0",
36
+ "lodash": "^4.17.10",
37
+ "prettier": "^1.18.2",
38
+ "pug": "^2.0.0-rc.4",
39
+ "read-package-tree": "^5.3.1",
40
+ "typescript-ioc": "^1.2.4",
41
+ "yargs": "^12.0.1"
42
+ },
43
+ "devDependencies": {
44
+ "@types/fs-extra": "^8.1.1",
45
+ "@types/jest": "24.0.15",
46
+ "@types/lodash": "^4.14.91",
47
+ "@types/node": "^12.6.1",
48
+ "@types/prettier": "^1.18.0",
49
+ "@types/pug": "^2.0.4",
50
+ "@types/yargs": "^11.1.1",
51
+ "jest": "^24.8.0",
52
+ "ts-jest": "^24.0.2",
53
+ "ts-node": "^8.3.0",
54
+ "tslint": "^5.18.0",
55
+ "typescript": "^3.5.3"
56
+ }
57
57
  }