@novx/communication 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.
- package/README.md +16 -0
- package/package.json +47 -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 communication` to build the library.
|
|
13
|
+
|
|
14
|
+
## Running unit tests
|
|
15
|
+
|
|
16
|
+
Run `nx test communication` to execute the unit tests via [Jest](https://jestjs.io).
|
package/package.json
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@novx/communication",
|
|
3
|
+
"version": "0.2.0",
|
|
4
|
+
"description": "Communication 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/communication/index.js",
|
|
16
|
+
"module": "dist/libs/communication/index.esm.js",
|
|
17
|
+
"types": "dist/libs/communication/index.d.ts",
|
|
18
|
+
"publishConfig": {
|
|
19
|
+
"access": "public"
|
|
20
|
+
},
|
|
21
|
+
"exports": {
|
|
22
|
+
".": {
|
|
23
|
+
"types": "./dist/libs/communication/index.d.ts",
|
|
24
|
+
"import": "./dist/libs/communication/index.esm.js",
|
|
25
|
+
"require": "./dist/libs/communication/index.js",
|
|
26
|
+
"default": "./dist/libs/communication/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 communication",
|
|
39
|
+
"test": "nx test communication",
|
|
40
|
+
"lint": "nx lint communication"
|
|
41
|
+
},
|
|
42
|
+
"dependencies": {
|
|
43
|
+
"@novx/core": "0.2.0",
|
|
44
|
+
"axios": "^1.13.5"
|
|
45
|
+
},
|
|
46
|
+
"devDependencies": {}
|
|
47
|
+
}
|