@golemio/core 3.3.0-dev.2644036130 → 3.3.0-dev.2644055028

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/package.json +12 -3
  2. package/tsconfig.base.json +7 -8
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@golemio/core",
3
- "version": "3.3.0-dev.2644036130",
3
+ "version": "3.3.0-dev.2644055028",
4
4
  "description": "Golemio Core Module",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -8,7 +8,7 @@
8
8
  "build": "rimraf ./dist && tspc -p ./tsconfig.build.json",
9
9
  "build-minimal": "run-s 'build -- --sourceMap false --declaration false'",
10
10
  "build-watch": "run-s 'build -- --watch --preserveWatchOutput'",
11
- "test": "cross-env NODE_ENV=test mocha --exit --check-leaks --timeout 120000 -r @swc-node/register --file 'test/setup.ts' -r dotenv/config 'test/**/*.test.ts'",
11
+ "test": "cross-env NODE_ENV=test mocha --exit --check-leaks --timeout 120000 -r ts-node/register -r tsconfig-paths/register --file 'test/setup.ts' -r dotenv/config 'test/**/*.test.ts'",
12
12
  "test-debug": "run-s 'test -- --inspect-brk=9230'",
13
13
  "code-coverage": "nyc run-s test",
14
14
  "generate-docs": "typedoc --out docs/typedoc src",
@@ -32,7 +32,6 @@
32
32
  "@commitlint/cli": "^19.3.0",
33
33
  "@commitlint/config-conventional": "^16.2.1",
34
34
  "@golemio/eslint-config": "1.1.4",
35
- "@swc-node/register": "^1.11.1",
36
35
  "@swc/core": "^1.15.33",
37
36
  "@types/chai": "^5.2.3",
38
37
  "@types/chai-as-promised": "^8.0.2",
@@ -63,7 +62,9 @@
63
62
  "sinon": "^21.0.1",
64
63
  "source-map-support": "0.5.21",
65
64
  "supertest": "^7.1.4",
65
+ "ts-node": "^10.9.1",
66
66
  "ts-patch": "^4.0.1",
67
+ "tsconfig-paths": "^4.2.0",
67
68
  "typedoc": "^0.24.8",
68
69
  "typescript": "6.0.3",
69
70
  "typescript-transform-paths": "^4.0.0"
@@ -130,8 +131,16 @@
130
131
  "yauzl": "^2.10.0"
131
132
  },
132
133
  "overrides": {
134
+ "lodash": "^4.18.1",
133
135
  "lightship": {
136
+ "fast-uri": "^3.1.2",
134
137
  "fastify": "^5.8.5"
138
+ },
139
+ "@google-cloud/storage": {
140
+ "fast-xml-builder": "^1.2.0"
141
+ },
142
+ "ajv": {
143
+ "fast-uri": "^3.1.2"
135
144
  }
136
145
  }
137
146
  }
@@ -4,7 +4,6 @@
4
4
  "target": "ES2021",
5
5
  "lib": ["ES2021", "DOM"],
6
6
  "module": "CommonJS",
7
- "types": ["node", "mocha"],
8
7
  "strict": true,
9
8
  "declaration": true,
10
9
  "allowSyntheticDefaultImports": true,
@@ -14,25 +13,25 @@
14
13
  "sourceMap": true,
15
14
  "useUnknownInCatchVariables": false,
16
15
  "paths": {
17
- "#helpers": ["./src/helpers/index"],
16
+ "#helpers": ["./src/helpers"],
18
17
  "#helpers/*": ["./src/helpers/*"],
19
18
 
20
- "#monitoring": ["./src/monitoring/index"],
19
+ "#monitoring": ["./src/monitoring"],
21
20
  "#monitoring/*": ["./src/monitoring/*"],
22
21
 
23
- "#ig/": ["./src/input-gateway/index"],
22
+ "#ig/": ["./src/input-gateway"],
24
23
  "#ig/*": ["./src/input-gateway/*"],
25
24
 
26
- "#ie": ["./src/integration-engine/index"],
25
+ "#ie": ["./src/integration-engine"],
27
26
  "#ie/*": ["./src/integration-engine/*"],
28
27
 
29
- "#og": ["./src/output-gateway/index"],
28
+ "#og": ["./src/output-gateway"],
30
29
  "#og/*": ["./src/output-gateway/*"],
31
30
 
32
- "#sch": ["./src/schema-definitions/index"],
31
+ "#sch": ["./src/schema-definitions"],
33
32
  "#sch/*": ["./src/schema-definitions/*"],
34
33
 
35
- "src": ["./src/index"],
34
+ "src": ["./src"],
36
35
  "src/*": ["./src/*"]
37
36
  }
38
37
  }