@novx/portal 0.2.0

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 (2) hide show
  1. package/README.md +16 -0
  2. package/package.json +51 -0
package/README.md ADDED
@@ -0,0 +1,16 @@
1
+ # Novx Core
2
+
3
+ As part of the Novx Monorepo, Core provides basic infrastructural elements, which are
4
+ - a dependency injection solution
5
+ - an integrated aop solution
6
+ - handling of configuration values
7
+ - error handling
8
+ - tracing
9
+
10
+ ## Building
11
+
12
+ Run `nx build portal` to build the library.
13
+
14
+ ## Running unit tests
15
+
16
+ Run `nx test portal` to execute the unit tests via [Jest](https://jestjs.io).
package/package.json ADDED
@@ -0,0 +1,51 @@
1
+ {
2
+ "name": "@novx/portal",
3
+ "version": "0.2.0",
4
+ "description": "Portal library",
5
+ "homepage": "https://github.com/coolsamson7/novx",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "https://github.com/coolsamson7/novx"
9
+ },
10
+ "bugs": {
11
+ "url": "https://github.com/coolsamson7/novx/issues"
12
+ },
13
+ "license": "Apache-2.0",
14
+ "type": "module",
15
+ "main": "dist/libs/portal/index.js",
16
+ "module": "dist/libs/portal/index.esm.js",
17
+ "types": "dist/libs/portal/index.d.ts",
18
+ "publishConfig": {
19
+ "access": "public"
20
+ },
21
+ "exports": {
22
+ ".": {
23
+ "types": "./dist/libs/portal/index.d.ts",
24
+ "import": "./dist/libs/portal/index.esm.js",
25
+ "require": "./dist/libs/portal/index.js",
26
+ "default": "./dist/libs/portal/index.esm.js"
27
+ },
28
+ "./package.json": "./package.json"
29
+ },
30
+ "files": [
31
+ "*.js",
32
+ "*.esm.js",
33
+ "*.d.ts",
34
+ "*.js.map",
35
+ "README.md"
36
+ ],
37
+ "scripts": {
38
+ "build": "nx build portal",
39
+ "test": "nx test portal",
40
+ "lint": "nx lint portal"
41
+ },
42
+ "dependencies": {
43
+ "@novx/core": "0.2.0",
44
+ "@novx/i18n": "0.2.0",
45
+ "@novx/communication": "0.2.0",
46
+ "reflect-metadata": "^0.2.2",
47
+ "rxjs": "^7.8.2",
48
+ "axios": "^1.13.5"
49
+ },
50
+ "devDependencies": {}
51
+ }