sml-baseline 1.3.5 → 1.3.7

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 CHANGED
@@ -1,125 +1,125 @@
1
- {
2
- "name": "sml-baseline",
3
- "version": "1.3.5",
4
- "publishConfig": {
5
- "registry": "https://registry.npmjs.org/"
6
- },
7
- "description": "",
8
- "author": "SMl Team",
9
- "private": false,
10
- "license": "GNU",
11
- "main": "dist/index.js",
12
- "types": "dist/index.d.ts",
13
- "files": [
14
- "dist"
15
- ],
16
- "scripts": {
17
- "build": "nest build",
18
- "build:lib": "tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json",
19
- "dev": "tsc -p tsconfig.build.json --watch & tsc-alias -p tsconfig.build.json --watch",
20
- "format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
21
- "start": "nest start",
22
- "start:dev": "npx cross-env NODE_ENV=development nest start --watch",
23
- "start:debug": "nest start --debug --watch",
24
- "start:prod": "node dist/main",
25
- "lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
26
- "test": "jest",
27
- "test:watch": "jest --watch",
28
- "test:cov": "jest --coverage",
29
- "test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
30
- "test:e2e": "jest --config ./test/jest-e2e.json",
31
- "doc": "npx @compodoc/compodoc -p tsconfig.json -s --port 3001 --watch -d ./docs",
32
- "prepublishOnly": "npm run build:lib"
33
- },
34
- "dependencies": {
35
- "@opentelemetry/api-logs": "^0.217.0",
36
- "@opentelemetry/exporter-logs-otlp-http": "^0.217.0",
37
- "@opentelemetry/resources": "^2.7.1",
38
- "@opentelemetry/sdk-logs": "^0.217.0",
39
- "acorn": "^8.14.0",
40
- "acorn-walk": "^8.3.4",
41
- "axios": "^1.16.0",
42
- "bcrypt": "5.1.1",
43
- "jsonata": "2.1.0",
44
- "lodash": "4.17.21",
45
- "uuid": "^11.0.0",
46
- "winston": "^3.17.0",
47
- "winston-daily-rotate-file": "^5.0.0"
48
- },
49
- "peerDependencies": {
50
- "@nestjs/axios": "4.0.0",
51
- "@nestjs/common": "11.0.3",
52
- "@nestjs/config": "4.0.0",
53
- "@nestjs/core": "11.0.3",
54
- "@nestjs/jwt": "11.0.0",
55
- "@nestjs/mapped-types": "*",
56
- "@nestjs/mongoose": "11.0.1",
57
- "@nestjs/platform-express": "11.0.3",
58
- "@nestjs/serve-static": "5.0.1",
59
- "@nestjs/swagger": "11.0.3",
60
- "class-transformer": "0.5.1",
61
- "class-validator": "0.14.1",
62
- "mongoose": "8.7.3",
63
- "reflect-metadata": "0.2.2",
64
- "rxjs": "7.8.1"
65
- },
66
- "devDependencies": {
67
- "@compodoc/compodoc": "^1.1.26",
68
- "@nestjs/axios": "4.0.0",
69
- "@nestjs/cli": "^10.0.0",
70
- "@nestjs/common": "11.0.3",
71
- "@nestjs/config": "4.0.0",
72
- "@nestjs/core": "11.0.3",
73
- "@nestjs/jwt": "11.0.0",
74
- "@nestjs/mapped-types": "*",
75
- "@nestjs/mongoose": "11.0.1",
76
- "@nestjs/platform-express": "11.0.3",
77
- "@nestjs/schematics": "^10.0.0",
78
- "@nestjs/serve-static": "5.0.1",
79
- "@nestjs/swagger": "11.0.3",
80
- "@nestjs/testing": "11.0.10",
81
- "@types/bcrypt": "5.0.2",
82
- "@types/express": "^5.0.0",
83
- "@types/jest": "^29.5.2",
84
- "@types/node": "^20.3.1",
85
- "@types/supertest": "^6.0.0",
86
- "@typescript-eslint/eslint-plugin": "^8.0.0",
87
- "@typescript-eslint/parser": "^8.0.0",
88
- "class-transformer": "0.5.1",
89
- "class-validator": "0.14.1",
90
- "cross-env": "7.0.3",
91
- "eslint": "^9.0.0",
92
- "eslint-config-prettier": "^9.0.0",
93
- "eslint-plugin-prettier": "^5.0.0",
94
- "jest": "^29.5.0",
95
- "mongoose": "8.7.3",
96
- "prettier": "^3.0.0",
97
- "reflect-metadata": "0.2.2",
98
- "rxjs": "7.8.1",
99
- "source-map-support": "^0.5.21",
100
- "supertest": "^7.0.0",
101
- "ts-jest": "^29.1.0",
102
- "ts-loader": "^9.4.3",
103
- "ts-node": "^10.9.1",
104
- "tsc-alias": "^1.8.16",
105
- "tsconfig-paths": "^4.2.0",
106
- "typescript": "^5.9.3"
107
- },
108
- "jest": {
109
- "moduleFileExtensions": [
110
- "js",
111
- "json",
112
- "ts"
113
- ],
114
- "rootDir": "src",
115
- "testRegex": ".*\\.spec\\.ts$",
116
- "transform": {
117
- "^.+\\.(t|j)s$": "ts-jest"
118
- },
119
- "collectCoverageFrom": [
120
- "**/*.(t|j)s"
121
- ],
122
- "coverageDirectory": "../coverage",
123
- "testEnvironment": "node"
124
- }
125
- }
1
+ {
2
+ "name": "sml-baseline",
3
+ "version": "1.3.7",
4
+ "publishConfig": {
5
+ "registry": "https://registry.npmjs.org/"
6
+ },
7
+ "description": "",
8
+ "author": "SMl Team",
9
+ "private": false,
10
+ "license": "GNU",
11
+ "main": "dist/index.js",
12
+ "types": "dist/index.d.ts",
13
+ "files": [
14
+ "dist"
15
+ ],
16
+ "scripts": {
17
+ "build": "nest build",
18
+ "build:lib": "tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json",
19
+ "dev": "tsc -p tsconfig.build.json --watch & tsc-alias -p tsconfig.build.json --watch",
20
+ "format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
21
+ "start": "nest start",
22
+ "start:dev": "npx cross-env NODE_ENV=development nest start --watch",
23
+ "start:debug": "nest start --debug --watch",
24
+ "start:prod": "node dist/main",
25
+ "lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
26
+ "test": "jest",
27
+ "test:watch": "jest --watch",
28
+ "test:cov": "jest --coverage",
29
+ "test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
30
+ "test:e2e": "jest --config ./test/jest-e2e.json",
31
+ "doc": "npx @compodoc/compodoc -p tsconfig.json -s --port 3001 --watch -d ./docs",
32
+ "prepublishOnly": "npm run build:lib"
33
+ },
34
+ "dependencies": {
35
+ "@opentelemetry/api-logs": "^0.217.0",
36
+ "@opentelemetry/exporter-logs-otlp-http": "^0.217.0",
37
+ "@opentelemetry/resources": "^2.7.1",
38
+ "@opentelemetry/sdk-logs": "^0.217.0",
39
+ "acorn": "^8.14.0",
40
+ "acorn-walk": "^8.3.4",
41
+ "axios": "^1.16.0",
42
+ "bcrypt": "5.1.1",
43
+ "jsonata": "2.1.0",
44
+ "lodash": "4.17.21",
45
+ "uuid": "^11.0.0",
46
+ "winston": "^3.17.0",
47
+ "winston-daily-rotate-file": "^5.0.0"
48
+ },
49
+ "peerDependencies": {
50
+ "@nestjs/axios": "4.0.0",
51
+ "@nestjs/common": "11.0.3",
52
+ "@nestjs/config": "4.0.0",
53
+ "@nestjs/core": "11.0.3",
54
+ "@nestjs/jwt": "11.0.0",
55
+ "@nestjs/mapped-types": "*",
56
+ "@nestjs/mongoose": "11.0.1",
57
+ "@nestjs/platform-express": "11.0.3",
58
+ "@nestjs/serve-static": "5.0.1",
59
+ "@nestjs/swagger": "11.0.3",
60
+ "class-transformer": "0.5.1",
61
+ "class-validator": "0.14.1",
62
+ "mongoose": "8.7.3",
63
+ "reflect-metadata": "0.2.2",
64
+ "rxjs": "7.8.1"
65
+ },
66
+ "devDependencies": {
67
+ "@compodoc/compodoc": "^1.1.26",
68
+ "@nestjs/axios": "4.0.0",
69
+ "@nestjs/cli": "^10.0.0",
70
+ "@nestjs/common": "11.0.3",
71
+ "@nestjs/config": "4.0.0",
72
+ "@nestjs/core": "11.0.3",
73
+ "@nestjs/jwt": "11.0.0",
74
+ "@nestjs/mapped-types": "*",
75
+ "@nestjs/mongoose": "11.0.1",
76
+ "@nestjs/platform-express": "11.0.3",
77
+ "@nestjs/schematics": "^10.0.0",
78
+ "@nestjs/serve-static": "5.0.1",
79
+ "@nestjs/swagger": "11.0.3",
80
+ "@nestjs/testing": "11.0.10",
81
+ "@types/bcrypt": "5.0.2",
82
+ "@types/express": "^5.0.0",
83
+ "@types/jest": "^29.5.2",
84
+ "@types/node": "^20.3.1",
85
+ "@types/supertest": "^6.0.0",
86
+ "@typescript-eslint/eslint-plugin": "^8.0.0",
87
+ "@typescript-eslint/parser": "^8.0.0",
88
+ "class-transformer": "0.5.1",
89
+ "class-validator": "0.14.1",
90
+ "cross-env": "7.0.3",
91
+ "eslint": "^9.0.0",
92
+ "eslint-config-prettier": "^9.0.0",
93
+ "eslint-plugin-prettier": "^5.0.0",
94
+ "jest": "^29.5.0",
95
+ "mongoose": "8.7.3",
96
+ "prettier": "^3.0.0",
97
+ "reflect-metadata": "0.2.2",
98
+ "rxjs": "7.8.1",
99
+ "source-map-support": "^0.5.21",
100
+ "supertest": "^7.0.0",
101
+ "ts-jest": "^29.1.0",
102
+ "ts-loader": "^9.4.3",
103
+ "ts-node": "^10.9.1",
104
+ "tsc-alias": "^1.8.16",
105
+ "tsconfig-paths": "^4.2.0",
106
+ "typescript": "^5.9.3"
107
+ },
108
+ "jest": {
109
+ "moduleFileExtensions": [
110
+ "js",
111
+ "json",
112
+ "ts"
113
+ ],
114
+ "rootDir": "src",
115
+ "testRegex": ".*\\.spec\\.ts$",
116
+ "transform": {
117
+ "^.+\\.(t|j)s$": "ts-jest"
118
+ },
119
+ "collectCoverageFrom": [
120
+ "**/*.(t|j)s"
121
+ ],
122
+ "coverageDirectory": "../coverage",
123
+ "testEnvironment": "node"
124
+ }
125
+ }