@golemio/audit-logs 1.1.1-dev.2626138029 → 1.1.1-dev.2647583425
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/package.json +15 -22
package/package.json
CHANGED
|
@@ -1,32 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@golemio/audit-logs",
|
|
3
|
-
"version": "1.1.1-dev.
|
|
3
|
+
"version": "1.1.1-dev.2647583425",
|
|
4
4
|
"description": "Golemio Audit Logs Module",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
|
-
"imports": {
|
|
8
|
-
"#helpers": {
|
|
9
|
-
"development": "./src/helpers/index.ts",
|
|
10
|
-
"default": "./dist/helpers/index.js"
|
|
11
|
-
},
|
|
12
|
-
"#helpers/*": {
|
|
13
|
-
"development": "./src/helpers/*.ts",
|
|
14
|
-
"default": "./dist/helpers/*.js"
|
|
15
|
-
}
|
|
16
|
-
},
|
|
17
7
|
"directories": {
|
|
18
8
|
"doc": "docs"
|
|
19
9
|
},
|
|
20
10
|
"scripts": {
|
|
21
|
-
"build": "rimraf ./dist &&
|
|
11
|
+
"build": "rimraf ./dist && tspc -p ./tsconfig.build.json",
|
|
22
12
|
"build-minimal": "run-s 'build -- --sourceMap false --declaration false'",
|
|
23
13
|
"build-watch": "run-s 'build -- --watch --preserveWatchOutput'",
|
|
24
14
|
"prepare-db": "golemio import-db-data",
|
|
25
|
-
"
|
|
26
|
-
"test": "
|
|
15
|
+
"typecheck": "tsc --noEmit -p tsconfig.json",
|
|
16
|
+
"test:only": "cross-env NODE_ENV=test mocha --exit --check-leaks --timeout 120000 -r @swc-node/register -r dotenv/config --file 'test/setup.ts' 'test/**/*.test.ts'",
|
|
17
|
+
"test": "run-s prepare-db typecheck test:only",
|
|
27
18
|
"test-debug": "run-s 'test -- --inspect-brk=9230'",
|
|
28
|
-
"coverage:only": "nyc --reporter=text --reporter=lcov npm run test:only",
|
|
29
|
-
"code-coverage": "run-s prepare-db coverage:only",
|
|
19
|
+
"coverage:only": "nyc --reporter=text --reporter=lcov npm run test:only -- -r source-map-support/register",
|
|
20
|
+
"code-coverage": "run-s prepare-db typecheck coverage:only",
|
|
30
21
|
"generate-docs": "typedoc --out docs/typedoc src",
|
|
31
22
|
"lint": "eslint --cache \"{src,test}/**/*.ts\""
|
|
32
23
|
},
|
|
@@ -47,8 +38,10 @@
|
|
|
47
38
|
"@commitlint/cli": "^11.0.0",
|
|
48
39
|
"@commitlint/config-conventional": "^11.0.0",
|
|
49
40
|
"@golemio/cli": "1.11.2",
|
|
50
|
-
"@golemio/core": "
|
|
41
|
+
"@golemio/core": "4.0.0-dev.2647379566",
|
|
51
42
|
"@golemio/eslint-config": "1.1.4",
|
|
43
|
+
"@swc-node/register": "^1.11.1",
|
|
44
|
+
"@swc/core": "^1.15.33",
|
|
52
45
|
"@types/amqplib": "^0.5.17",
|
|
53
46
|
"@types/chai": "^5.2.3",
|
|
54
47
|
"@types/chai-as-promised": "^8.0.2",
|
|
@@ -74,12 +67,12 @@
|
|
|
74
67
|
"sinon": "^21.0.1",
|
|
75
68
|
"source-map-support": "0.5.21",
|
|
76
69
|
"supertest": "^7.2.2",
|
|
77
|
-
"
|
|
78
|
-
"
|
|
79
|
-
"
|
|
80
|
-
"typescript": "
|
|
70
|
+
"ts-patch": "^4.0.1",
|
|
71
|
+
"typedoc": "^0.28.19",
|
|
72
|
+
"typescript": "6.0.3",
|
|
73
|
+
"typescript-transform-paths": "^4.0.0"
|
|
81
74
|
},
|
|
82
75
|
"peerDependencies": {
|
|
83
|
-
"@golemio/core": ">=
|
|
76
|
+
"@golemio/core": ">=4.0.0"
|
|
84
77
|
}
|
|
85
78
|
}
|