@elliemae/microfe-common 2.0.0-next.30
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/dist/cjs/app.config.json +17 -0
- package/dist/cjs/common.js +16 -0
- package/dist/cjs/event.js +67 -0
- package/dist/cjs/eventManager.js +201 -0
- package/dist/cjs/guest.js +16 -0
- package/dist/cjs/index.html +12 -0
- package/dist/cjs/index.js +35 -0
- package/dist/cjs/messageType.js +37 -0
- package/dist/cjs/package.json +4 -0
- package/dist/cjs/remoting.js +386 -0
- package/dist/cjs/remotingEventMessage.js +16 -0
- package/dist/cjs/scriptingObject.js +119 -0
- package/dist/cjs/tests/scriptingObjects/appraisalServiceModule.js +101 -0
- package/dist/cjs/tests/scriptingObjects/constant.js +26 -0
- package/dist/cjs/tests/scriptingObjects/global.js +61 -0
- package/dist/esm/app.config.json +17 -0
- package/dist/esm/common.js +0 -0
- package/dist/esm/event.js +47 -0
- package/dist/esm/eventManager.js +182 -0
- package/dist/esm/guest.js +0 -0
- package/dist/esm/index.html +12 -0
- package/dist/esm/index.js +15 -0
- package/dist/esm/messageType.js +17 -0
- package/dist/esm/package.json +4 -0
- package/dist/esm/remoting.js +367 -0
- package/dist/esm/remotingEventMessage.js +0 -0
- package/dist/esm/scriptingObject.js +100 -0
- package/dist/esm/tests/scriptingObjects/appraisalServiceModule.js +82 -0
- package/dist/esm/tests/scriptingObjects/constant.js +6 -0
- package/dist/esm/tests/scriptingObjects/global.js +42 -0
- package/dist/types/common.d.ts +35 -0
- package/dist/types/event.d.ts +82 -0
- package/dist/types/eventManager.d.ts +125 -0
- package/dist/types/guest.d.ts +90 -0
- package/dist/types/index.d.ts +12 -0
- package/dist/types/messageType.d.ts +13 -0
- package/dist/types/remoting.d.ts +237 -0
- package/dist/types/remotingEventMessage.d.ts +26 -0
- package/dist/types/scriptingObject.d.ts +37 -0
- package/dist/types/tests/eventManager.test.d.ts +1 -0
- package/dist/types/tests/scriptingObjects/appraisalServiceModule.d.ts +33 -0
- package/dist/types/tests/scriptingObjects/constant.d.ts +2 -0
- package/dist/types/tests/scriptingObjects/global.d.ts +10 -0
- package/package.json +62 -0
package/package.json
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@elliemae/microfe-common",
|
|
3
|
+
"version": "2.0.0-next.30",
|
|
4
|
+
"description": "common micro frontend functional modules",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "https://git.elliemae.io/platform-ui/pui-microfe.git"
|
|
8
|
+
},
|
|
9
|
+
"engines": {
|
|
10
|
+
"pnpm": ">=7",
|
|
11
|
+
"node": ">=18"
|
|
12
|
+
},
|
|
13
|
+
"author": "ICE MT",
|
|
14
|
+
"license": "MIT",
|
|
15
|
+
"sideEffects": false,
|
|
16
|
+
"files": [
|
|
17
|
+
"dist"
|
|
18
|
+
],
|
|
19
|
+
"main": "./dist/cjs/index.js",
|
|
20
|
+
"module": "./dist/esm/index.js",
|
|
21
|
+
"types": "./dist/types/index.d.ts",
|
|
22
|
+
"exports": {
|
|
23
|
+
".": {
|
|
24
|
+
"import": "./dist/esm/index.js",
|
|
25
|
+
"require": "./dist/cjs/index.js"
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
"jestSonar": {
|
|
29
|
+
"reportPath": "reports",
|
|
30
|
+
"reportFile": "tests.xml",
|
|
31
|
+
"indent": 4,
|
|
32
|
+
"sonar56x": true
|
|
33
|
+
},
|
|
34
|
+
"peerDependencies": {
|
|
35
|
+
"@elliemae/pui-diagnostics": "~3.0.1",
|
|
36
|
+
"uuid": "~9.0.0"
|
|
37
|
+
},
|
|
38
|
+
"devDependencies": {
|
|
39
|
+
"@elliemae/browserslist-config-elliemae-latest-browsers": "~1.6.0",
|
|
40
|
+
"@elliemae/pui-cli": "8.0.0-next.11",
|
|
41
|
+
"@elliemae/pui-diagnostics": "~3.0.1",
|
|
42
|
+
"@elliemae/pui-scripting-object": "~1.19.0",
|
|
43
|
+
"@types/uuid": "~9.0.0",
|
|
44
|
+
"jest-styled-components": "~7.1.1",
|
|
45
|
+
"styled-components": "~5.3.6"
|
|
46
|
+
},
|
|
47
|
+
"scripts": {
|
|
48
|
+
"build": "pui-cli pack -p -t node",
|
|
49
|
+
"dev": "pui-cli pack -t node",
|
|
50
|
+
"dts": "exit 0",
|
|
51
|
+
"gendoc": "pui-cli gendoc",
|
|
52
|
+
"lint": "pui-cli lint",
|
|
53
|
+
"lint-fix": "pui-cli lint --fix",
|
|
54
|
+
"start": "pui-cli start",
|
|
55
|
+
"start-server": "cross-env PORT=3001 pui-cli start -p",
|
|
56
|
+
"test": "pui-cli test -p",
|
|
57
|
+
"test-fix": "pui-cli test -f",
|
|
58
|
+
"test-watch": "jest --watch",
|
|
59
|
+
"test-staged": "jest --coverage --passWithNoTests --bail --findRelatedTests",
|
|
60
|
+
"tscheck": "pui-cli tscheck --files"
|
|
61
|
+
}
|
|
62
|
+
}
|