typeorm 0.3.19-dev.633c4e3 → 0.3.19
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 +273 -1
package/package.json
CHANGED
|
@@ -1 +1,273 @@
|
|
|
1
|
-
{
|
|
1
|
+
{
|
|
2
|
+
"name": "typeorm",
|
|
3
|
+
"private": false,
|
|
4
|
+
"version": "0.3.19",
|
|
5
|
+
"description": "Data-Mapper ORM for TypeScript, ES7, ES6, ES5. Supports MySQL, PostgreSQL, MariaDB, SQLite, MS SQL Server, Oracle, MongoDB databases.",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"readmeFilename": "README.md",
|
|
8
|
+
"author": {
|
|
9
|
+
"name": "Umed Khudoiberdiev",
|
|
10
|
+
"email": "pleerock.me@gmail.com"
|
|
11
|
+
},
|
|
12
|
+
"engines": {
|
|
13
|
+
"node": ">= 12.9.0"
|
|
14
|
+
},
|
|
15
|
+
"exports": {
|
|
16
|
+
".": {
|
|
17
|
+
"types": "./index.d.ts",
|
|
18
|
+
"node": {
|
|
19
|
+
"import": "./index.mjs",
|
|
20
|
+
"require": "./index.js",
|
|
21
|
+
"types": "./index.d.ts"
|
|
22
|
+
},
|
|
23
|
+
"browser": {
|
|
24
|
+
"require": "./index.js",
|
|
25
|
+
"import": "./browser/index.js",
|
|
26
|
+
"default": "./index.js"
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
"./browser": {
|
|
30
|
+
"types": "./index.d.ts",
|
|
31
|
+
"default": "./browser/index.js"
|
|
32
|
+
},
|
|
33
|
+
"./*.js": "./*.js",
|
|
34
|
+
"./*": {
|
|
35
|
+
"require": "./*.js",
|
|
36
|
+
"import": "./*"
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
"main": "./index.js",
|
|
40
|
+
"module": "./index.mjs",
|
|
41
|
+
"types": "./index.d.ts",
|
|
42
|
+
"browser": {
|
|
43
|
+
"./browser/connection/ConnectionOptionsReader.js": "./browser/platform/BrowserConnectionOptionsReaderDummy.js",
|
|
44
|
+
"./browser/connection/options-reader/ConnectionOptionsXmlReader.js": "./browser/platform/BrowserConnectionOptionsReaderDummy.js",
|
|
45
|
+
"./browser/connection/options-reader/ConnectionOptionsYmlReader.js": "./browser/platform/BrowserConnectionOptionsReaderDummy.js",
|
|
46
|
+
"./browser/driver/aurora-data-api/AuroraDataApiDriver.js": "./browser/platform/BrowserDisabledDriversDummy.js",
|
|
47
|
+
"./browser/driver/better-sqlite3/BetterSqlite3Driver.js": "./browser/platform/BrowserDisabledDriversDummy.js",
|
|
48
|
+
"./browser/driver/cockroachdb/CockroachDriver.js": "./browser/platform/BrowserDisabledDriversDummy.js",
|
|
49
|
+
"./browser/driver/mongodb/MongoDriver.js": "./browser/platform/BrowserDisabledDriversDummy.js",
|
|
50
|
+
"./browser/driver/mongodb/MongoQueryRunner.js": "./browser/platform/BrowserDisabledDriversDummy.js",
|
|
51
|
+
"./browser/driver/mongodb/bson.typings.js": "./browser/platform/BrowserDisabledDriversDummy.js",
|
|
52
|
+
"./browser/driver/mongodb/typings.js": "./browser/platform/BrowserDisabledDriversDummy.js",
|
|
53
|
+
"./browser/driver/mysql/MysqlDriver.js": "./browser/platform/BrowserDisabledDriversDummy.js",
|
|
54
|
+
"./browser/driver/oracle/OracleDriver.js": "./browser/platform/BrowserDisabledDriversDummy.js",
|
|
55
|
+
"./browser/driver/postgres/PostgresDriver.js": "./browser/platform/BrowserDisabledDriversDummy.js",
|
|
56
|
+
"./browser/driver/sap/SapDriver.js": "./browser/platform/BrowserDisabledDriversDummy.js",
|
|
57
|
+
"./browser/driver/sqlite/SqliteDriver.js": "./browser/platform/BrowserDisabledDriversDummy.js",
|
|
58
|
+
"./browser/driver/sqlserver/SqlServerDriver.js": "./browser/platform/BrowserDisabledDriversDummy.js",
|
|
59
|
+
"./browser/entity-manager/MongoEntityManager.js": "./browser/platform/BrowserDisabledDriversDummy.js",
|
|
60
|
+
"./browser/logger/FileLogger.js": "./browser/platform/BrowserFileLoggerDummy.js",
|
|
61
|
+
"./browser/platform/PlatformTools.js": "./browser/platform/BrowserPlatformTools.js",
|
|
62
|
+
"./browser/repository/MongoRepository.js": "./browser/platform/BrowserDisabledDriversDummy.js",
|
|
63
|
+
"./browser/util/DirectoryExportedClassesLoader.js": "./browser/platform/BrowserDirectoryExportedClassesLoader.js",
|
|
64
|
+
"./index.js": "./browser/index.js",
|
|
65
|
+
"./index.mjs": "./browser/index.js"
|
|
66
|
+
},
|
|
67
|
+
"repository": {
|
|
68
|
+
"type": "git",
|
|
69
|
+
"url": "https://github.com/typeorm/typeorm.git"
|
|
70
|
+
},
|
|
71
|
+
"bugs": {
|
|
72
|
+
"url": "https://github.com/typeorm/typeorm/issues"
|
|
73
|
+
},
|
|
74
|
+
"homepage": "https://typeorm.io",
|
|
75
|
+
"tags": [
|
|
76
|
+
"orm",
|
|
77
|
+
"typescript",
|
|
78
|
+
"typescript-orm",
|
|
79
|
+
"mysql",
|
|
80
|
+
"mysql-orm",
|
|
81
|
+
"postgresql",
|
|
82
|
+
"postgresql-orm",
|
|
83
|
+
"mariadb",
|
|
84
|
+
"mariadb-orm",
|
|
85
|
+
"spanner",
|
|
86
|
+
"sqlite",
|
|
87
|
+
"sqlite-orm",
|
|
88
|
+
"sql-server",
|
|
89
|
+
"sql-server-orm",
|
|
90
|
+
"oracle",
|
|
91
|
+
"oracle-orm",
|
|
92
|
+
"cloud-spanner",
|
|
93
|
+
"cloud-spanner-orm"
|
|
94
|
+
],
|
|
95
|
+
"devDependencies": {
|
|
96
|
+
"@types/app-root-path": "^1.2.4",
|
|
97
|
+
"@types/chai": "^4.3.4",
|
|
98
|
+
"@types/chai-as-promised": "^7.1.5",
|
|
99
|
+
"@types/debug": "^4.1.7",
|
|
100
|
+
"@types/mkdirp": "^1.0.2",
|
|
101
|
+
"@types/mocha": "^10.0.1",
|
|
102
|
+
"@types/node": "^18.13.0",
|
|
103
|
+
"@types/sha.js": "^2.4.0",
|
|
104
|
+
"@types/sinon": "^10.0.13",
|
|
105
|
+
"@types/source-map-support": "^0.5.6",
|
|
106
|
+
"@types/uuid": "^9.0.0",
|
|
107
|
+
"@types/yargs": "^17.0.22",
|
|
108
|
+
"@typescript-eslint/eslint-plugin": "^6.0.0",
|
|
109
|
+
"better-sqlite3": "^8.1.0",
|
|
110
|
+
"chai": "^4.3.7",
|
|
111
|
+
"chai-as-promised": "^7.1.1",
|
|
112
|
+
"class-transformer": "^0.5.1",
|
|
113
|
+
"conventional-changelog-angular": "^5.0.13",
|
|
114
|
+
"conventional-changelog-cli": "^2.2.2",
|
|
115
|
+
"del": "6.1.1",
|
|
116
|
+
"eslint": "^8.44.0",
|
|
117
|
+
"gulp": "^4.0.2",
|
|
118
|
+
"gulp-istanbul": "^1.1.3",
|
|
119
|
+
"gulp-mocha": "^10.0.0",
|
|
120
|
+
"gulp-rename": "^2.0.0",
|
|
121
|
+
"gulp-replace": "^1.1.4",
|
|
122
|
+
"gulp-shell": "^0.8.0",
|
|
123
|
+
"gulp-sourcemaps": "^3.0.0",
|
|
124
|
+
"gulp-typescript": "^6.0.0-alpha.1",
|
|
125
|
+
"gulpclass": "^0.2.0",
|
|
126
|
+
"husky": "^8.0.3",
|
|
127
|
+
"mocha": "^10.2.0",
|
|
128
|
+
"mongodb": "^6.3.0",
|
|
129
|
+
"mssql": "^10.0.1",
|
|
130
|
+
"mysql": "^2.18.1",
|
|
131
|
+
"mysql2": "^3.1.1",
|
|
132
|
+
"pg": "^8.9.0",
|
|
133
|
+
"pg-query-stream": "^4.3.0",
|
|
134
|
+
"prettier": "^2.8.3",
|
|
135
|
+
"redis": "^4.6.4",
|
|
136
|
+
"remap-istanbul": "^0.13.0",
|
|
137
|
+
"rimraf": "^4.1.2",
|
|
138
|
+
"sinon": "^15.0.1",
|
|
139
|
+
"sinon-chai": "^3.7.0",
|
|
140
|
+
"source-map-support": "^0.5.21",
|
|
141
|
+
"sql.js": "^1.8.0",
|
|
142
|
+
"sqlite3": "^5.1.4",
|
|
143
|
+
"ts-node": "^10.9.1",
|
|
144
|
+
"typeorm-aurora-data-api-driver": "^2.4.4",
|
|
145
|
+
"typescript": "^4.9.5"
|
|
146
|
+
},
|
|
147
|
+
"peerDependencies": {
|
|
148
|
+
"@google-cloud/spanner": "^5.18.0",
|
|
149
|
+
"@sap/hana-client": "^2.12.25",
|
|
150
|
+
"better-sqlite3": "^7.1.2 || ^8.0.0 || ^9.0.0",
|
|
151
|
+
"hdb-pool": "^0.1.6",
|
|
152
|
+
"ioredis": "^5.0.4",
|
|
153
|
+
"mongodb": "^5.8.0",
|
|
154
|
+
"mssql": "^9.1.1 || ^10.0.1",
|
|
155
|
+
"mysql2": "^2.2.5 || ^3.0.1",
|
|
156
|
+
"oracledb": "^6.3.0",
|
|
157
|
+
"pg": "^8.5.1",
|
|
158
|
+
"pg-native": "^3.0.0",
|
|
159
|
+
"pg-query-stream": "^4.0.0",
|
|
160
|
+
"redis": "^3.1.1 || ^4.0.0",
|
|
161
|
+
"sql.js": "^1.4.0",
|
|
162
|
+
"sqlite3": "^5.0.3",
|
|
163
|
+
"ts-node": "^10.7.0",
|
|
164
|
+
"typeorm-aurora-data-api-driver": "^2.0.0"
|
|
165
|
+
},
|
|
166
|
+
"peerDependenciesMeta": {
|
|
167
|
+
"@google-cloud/spanner": {
|
|
168
|
+
"optional": true
|
|
169
|
+
},
|
|
170
|
+
"@sap/hana-client": {
|
|
171
|
+
"optional": true
|
|
172
|
+
},
|
|
173
|
+
"better-sqlite3": {
|
|
174
|
+
"optional": true
|
|
175
|
+
},
|
|
176
|
+
"hdb-pool": {
|
|
177
|
+
"optional": true
|
|
178
|
+
},
|
|
179
|
+
"ioredis": {
|
|
180
|
+
"optional": true
|
|
181
|
+
},
|
|
182
|
+
"mongodb": {
|
|
183
|
+
"optional": true
|
|
184
|
+
},
|
|
185
|
+
"mssql": {
|
|
186
|
+
"optional": true
|
|
187
|
+
},
|
|
188
|
+
"mysql2": {
|
|
189
|
+
"optional": true
|
|
190
|
+
},
|
|
191
|
+
"oracledb": {
|
|
192
|
+
"optional": true
|
|
193
|
+
},
|
|
194
|
+
"pg": {
|
|
195
|
+
"optional": true
|
|
196
|
+
},
|
|
197
|
+
"pg-native": {
|
|
198
|
+
"optional": true
|
|
199
|
+
},
|
|
200
|
+
"pg-query-stream": {
|
|
201
|
+
"optional": true
|
|
202
|
+
},
|
|
203
|
+
"redis": {
|
|
204
|
+
"optional": true
|
|
205
|
+
},
|
|
206
|
+
"sql.js": {
|
|
207
|
+
"optional": true
|
|
208
|
+
},
|
|
209
|
+
"sqlite3": {
|
|
210
|
+
"optional": true
|
|
211
|
+
},
|
|
212
|
+
"ts-node": {
|
|
213
|
+
"optional": true
|
|
214
|
+
},
|
|
215
|
+
"typeorm-aurora-data-api-driver": {
|
|
216
|
+
"optional": true
|
|
217
|
+
}
|
|
218
|
+
},
|
|
219
|
+
"dependencies": {
|
|
220
|
+
"@sqltools/formatter": "^1.2.5",
|
|
221
|
+
"app-root-path": "^3.1.0",
|
|
222
|
+
"buffer": "^6.0.3",
|
|
223
|
+
"chalk": "^4.1.2",
|
|
224
|
+
"cli-highlight": "^2.1.11",
|
|
225
|
+
"dayjs": "^1.11.9",
|
|
226
|
+
"debug": "^4.3.4",
|
|
227
|
+
"dotenv": "^16.0.3",
|
|
228
|
+
"glob": "^10.3.10",
|
|
229
|
+
"mkdirp": "^2.1.3",
|
|
230
|
+
"reflect-metadata": "^0.1.13",
|
|
231
|
+
"sha.js": "^2.4.11",
|
|
232
|
+
"tslib": "^2.5.0",
|
|
233
|
+
"uuid": "^9.0.0",
|
|
234
|
+
"yargs": "^17.6.2"
|
|
235
|
+
},
|
|
236
|
+
"scripts": {
|
|
237
|
+
"test": "rimraf ./build && tsc && mocha --file ./build/compiled/test/utils/test-setup.js --bail --recursive --timeout 90000 ./build/compiled/test",
|
|
238
|
+
"test-fast": "mocha --file ./build/compiled/test/utils/test-setup.js --bail --recursive --timeout 90000 ./build/compiled/test",
|
|
239
|
+
"compile": "rimraf ./build && tsc",
|
|
240
|
+
"watch": "./node_modules/.bin/tsc -w",
|
|
241
|
+
"package": "gulp package",
|
|
242
|
+
"pack": "gulp pack",
|
|
243
|
+
"lint": "eslint . --ext .ts",
|
|
244
|
+
"format": "prettier --write --end-of-line auto \"./src/**/*.ts\" \"./test/**/*.ts\" \"./sample/**/*.ts\"",
|
|
245
|
+
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 2"
|
|
246
|
+
},
|
|
247
|
+
"bin": {
|
|
248
|
+
"typeorm": "./cli.js",
|
|
249
|
+
"typeorm-ts-node-commonjs": "./cli-ts-node-commonjs.js",
|
|
250
|
+
"typeorm-ts-node-esm": "./cli-ts-node-esm.js"
|
|
251
|
+
},
|
|
252
|
+
"funding": "https://opencollective.com/typeorm",
|
|
253
|
+
"collective": {
|
|
254
|
+
"type": "opencollective",
|
|
255
|
+
"url": "https://opencollective.com/typeorm",
|
|
256
|
+
"logo": "https://opencollective.com/opencollective/logo.txt"
|
|
257
|
+
},
|
|
258
|
+
"nyc": {
|
|
259
|
+
"all": true,
|
|
260
|
+
"cache": false,
|
|
261
|
+
"exclude": [
|
|
262
|
+
"**/*.d.ts"
|
|
263
|
+
],
|
|
264
|
+
"extension": [
|
|
265
|
+
".ts"
|
|
266
|
+
],
|
|
267
|
+
"include": [
|
|
268
|
+
"build/compiled/src/**",
|
|
269
|
+
"src/**"
|
|
270
|
+
],
|
|
271
|
+
"reporter": "json"
|
|
272
|
+
}
|
|
273
|
+
}
|