typeorm 0.3.17 → 0.3.18-dev.dff2d53
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 +1 -271
package/package.json
CHANGED
|
@@ -1,271 +1 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "typeorm",
|
|
3
|
-
"private": false,
|
|
4
|
-
"version": "0.3.17",
|
|
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/typings.js": "./browser/platform/BrowserDisabledDriversDummy.js",
|
|
52
|
-
"./browser/driver/mongodb/bson.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
|
-
"better-sqlite3": "^8.1.0",
|
|
109
|
-
"chai": "^4.3.7",
|
|
110
|
-
"chai-as-promised": "^7.1.1",
|
|
111
|
-
"class-transformer": "^0.5.1",
|
|
112
|
-
"conventional-changelog-angular": "^5.0.13",
|
|
113
|
-
"conventional-changelog-cli": "^2.2.2",
|
|
114
|
-
"del": "6.1.1",
|
|
115
|
-
"gulp": "^4.0.2",
|
|
116
|
-
"gulp-istanbul": "^1.1.3",
|
|
117
|
-
"gulp-mocha": "^8.0.0",
|
|
118
|
-
"gulp-rename": "^2.0.0",
|
|
119
|
-
"gulp-replace": "^1.1.4",
|
|
120
|
-
"gulp-shell": "^0.8.0",
|
|
121
|
-
"gulp-sourcemaps": "^3.0.0",
|
|
122
|
-
"gulp-typescript": "^6.0.0-alpha.1",
|
|
123
|
-
"gulpclass": "^0.2.0",
|
|
124
|
-
"husky": "^8.0.3",
|
|
125
|
-
"mocha": "^10.2.0",
|
|
126
|
-
"mongodb": "^5.2.0",
|
|
127
|
-
"mssql": "^9.1.1",
|
|
128
|
-
"mysql": "^2.18.1",
|
|
129
|
-
"mysql2": "^3.1.1",
|
|
130
|
-
"pg": "^8.9.0",
|
|
131
|
-
"pg-query-stream": "^4.3.0",
|
|
132
|
-
"prettier": "^2.8.3",
|
|
133
|
-
"redis": "^4.6.4",
|
|
134
|
-
"remap-istanbul": "^0.13.0",
|
|
135
|
-
"rimraf": "^4.1.2",
|
|
136
|
-
"sinon": "^15.0.1",
|
|
137
|
-
"sinon-chai": "^3.7.0",
|
|
138
|
-
"source-map-support": "^0.5.21",
|
|
139
|
-
"sql.js": "^1.8.0",
|
|
140
|
-
"sqlite3": "^5.1.4",
|
|
141
|
-
"ts-node": "^10.9.1",
|
|
142
|
-
"typeorm-aurora-data-api-driver": "^2.4.4",
|
|
143
|
-
"typescript": "^4.9.5"
|
|
144
|
-
},
|
|
145
|
-
"peerDependencies": {
|
|
146
|
-
"@google-cloud/spanner": "^5.18.0",
|
|
147
|
-
"@sap/hana-client": "^2.12.25",
|
|
148
|
-
"better-sqlite3": "^7.1.2 || ^8.0.0",
|
|
149
|
-
"hdb-pool": "^0.1.6",
|
|
150
|
-
"ioredis": "^5.0.4",
|
|
151
|
-
"mongodb": "^5.2.0",
|
|
152
|
-
"mssql": "^9.1.1",
|
|
153
|
-
"mysql2": "^2.2.5 || ^3.0.1",
|
|
154
|
-
"oracledb": "^5.1.0",
|
|
155
|
-
"pg": "^8.5.1",
|
|
156
|
-
"pg-native": "^3.0.0",
|
|
157
|
-
"pg-query-stream": "^4.0.0",
|
|
158
|
-
"redis": "^3.1.1 || ^4.0.0",
|
|
159
|
-
"sql.js": "^1.4.0",
|
|
160
|
-
"sqlite3": "^5.0.3",
|
|
161
|
-
"ts-node": "^10.7.0",
|
|
162
|
-
"typeorm-aurora-data-api-driver": "^2.0.0"
|
|
163
|
-
},
|
|
164
|
-
"peerDependenciesMeta": {
|
|
165
|
-
"@google-cloud/spanner": {
|
|
166
|
-
"optional": true
|
|
167
|
-
},
|
|
168
|
-
"@sap/hana-client": {
|
|
169
|
-
"optional": true
|
|
170
|
-
},
|
|
171
|
-
"better-sqlite3": {
|
|
172
|
-
"optional": true
|
|
173
|
-
},
|
|
174
|
-
"hdb-pool": {
|
|
175
|
-
"optional": true
|
|
176
|
-
},
|
|
177
|
-
"ioredis": {
|
|
178
|
-
"optional": true
|
|
179
|
-
},
|
|
180
|
-
"mongodb": {
|
|
181
|
-
"optional": true
|
|
182
|
-
},
|
|
183
|
-
"mssql": {
|
|
184
|
-
"optional": true
|
|
185
|
-
},
|
|
186
|
-
"mysql2": {
|
|
187
|
-
"optional": true
|
|
188
|
-
},
|
|
189
|
-
"oracledb": {
|
|
190
|
-
"optional": true
|
|
191
|
-
},
|
|
192
|
-
"pg": {
|
|
193
|
-
"optional": true
|
|
194
|
-
},
|
|
195
|
-
"pg-native": {
|
|
196
|
-
"optional": true
|
|
197
|
-
},
|
|
198
|
-
"pg-query-stream": {
|
|
199
|
-
"optional": true
|
|
200
|
-
},
|
|
201
|
-
"redis": {
|
|
202
|
-
"optional": true
|
|
203
|
-
},
|
|
204
|
-
"sql.js": {
|
|
205
|
-
"optional": true
|
|
206
|
-
},
|
|
207
|
-
"sqlite3": {
|
|
208
|
-
"optional": true
|
|
209
|
-
},
|
|
210
|
-
"ts-node": {
|
|
211
|
-
"optional": true
|
|
212
|
-
},
|
|
213
|
-
"typeorm-aurora-data-api-driver": {
|
|
214
|
-
"optional": true
|
|
215
|
-
}
|
|
216
|
-
},
|
|
217
|
-
"dependencies": {
|
|
218
|
-
"@sqltools/formatter": "^1.2.5",
|
|
219
|
-
"app-root-path": "^3.1.0",
|
|
220
|
-
"buffer": "^6.0.3",
|
|
221
|
-
"chalk": "^4.1.2",
|
|
222
|
-
"cli-highlight": "^2.1.11",
|
|
223
|
-
"date-fns": "^2.29.3",
|
|
224
|
-
"debug": "^4.3.4",
|
|
225
|
-
"dotenv": "^16.0.3",
|
|
226
|
-
"glob": "^8.1.0",
|
|
227
|
-
"mkdirp": "^2.1.3",
|
|
228
|
-
"reflect-metadata": "^0.1.13",
|
|
229
|
-
"sha.js": "^2.4.11",
|
|
230
|
-
"tslib": "^2.5.0",
|
|
231
|
-
"uuid": "^9.0.0",
|
|
232
|
-
"yargs": "^17.6.2"
|
|
233
|
-
},
|
|
234
|
-
"scripts": {
|
|
235
|
-
"test": "rimraf ./build && tsc && mocha --file ./build/compiled/test/utils/test-setup.js --bail --recursive --timeout 90000 ./build/compiled/test",
|
|
236
|
-
"test-fast": "mocha --file ./build/compiled/test/utils/test-setup.js --bail --recursive --timeout 90000 ./build/compiled/test",
|
|
237
|
-
"compile": "rimraf ./build && tsc",
|
|
238
|
-
"watch": "./node_modules/.bin/tsc -w",
|
|
239
|
-
"package": "gulp package",
|
|
240
|
-
"pack": "gulp pack",
|
|
241
|
-
"lint": "prettier --check \"./src/**/*.ts\" \"./test/**/*.ts\" \"./sample/**/*.ts\"",
|
|
242
|
-
"format": "prettier --write --end-of-line auto \"./src/**/*.ts\" \"./test/**/*.ts\" \"./sample/**/*.ts\"",
|
|
243
|
-
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 2"
|
|
244
|
-
},
|
|
245
|
-
"bin": {
|
|
246
|
-
"typeorm": "./cli.js",
|
|
247
|
-
"typeorm-ts-node-commonjs": "./cli-ts-node-commonjs.js",
|
|
248
|
-
"typeorm-ts-node-esm": "./cli-ts-node-esm.js"
|
|
249
|
-
},
|
|
250
|
-
"funding": "https://opencollective.com/typeorm",
|
|
251
|
-
"collective": {
|
|
252
|
-
"type": "opencollective",
|
|
253
|
-
"url": "https://opencollective.com/typeorm",
|
|
254
|
-
"logo": "https://opencollective.com/opencollective/logo.txt"
|
|
255
|
-
},
|
|
256
|
-
"nyc": {
|
|
257
|
-
"all": true,
|
|
258
|
-
"cache": false,
|
|
259
|
-
"exclude": [
|
|
260
|
-
"**/*.d.ts"
|
|
261
|
-
],
|
|
262
|
-
"extension": [
|
|
263
|
-
".ts"
|
|
264
|
-
],
|
|
265
|
-
"include": [
|
|
266
|
-
"build/compiled/src/**",
|
|
267
|
-
"src/**"
|
|
268
|
-
],
|
|
269
|
-
"reporter": "json"
|
|
270
|
-
}
|
|
271
|
-
}
|
|
1
|
+
{ "name": "typeorm", "private": false, "version": "0.3.18-dev.dff2d53", "description": "Data-Mapper ORM for TypeScript, ES7, ES6, ES5. Supports MySQL, PostgreSQL, MariaDB, SQLite, MS SQL Server, Oracle, MongoDB databases.", "license": "MIT", "readmeFilename": "README.md", "author": { "name": "Umed Khudoiberdiev", "email": "pleerock.me@gmail.com" }, "engines": { "node": ">= 12.9.0" }, "exports": { ".": { "types": "./index.d.ts", "node": { "import": "./index.mjs", "require": "./index.js", "types": "./index.d.ts" }, "browser": { "require": "./index.js", "import": "./browser/index.js", "default": "./index.js" } }, "./browser": { "types": "./index.d.ts", "default": "./browser/index.js" }, "./*.js": "./*.js", "./*": { "require": "./*.js", "import": "./*" } }, "main": "./index.js", "module": "./index.mjs", "types": "./index.d.ts", "browser": { "./browser/connection/ConnectionOptionsReader.js": "./browser/platform/BrowserConnectionOptionsReaderDummy.js", "./browser/connection/options-reader/ConnectionOptionsXmlReader.js": "./browser/platform/BrowserConnectionOptionsReaderDummy.js", "./browser/connection/options-reader/ConnectionOptionsYmlReader.js": "./browser/platform/BrowserConnectionOptionsReaderDummy.js", "./browser/driver/aurora-data-api/AuroraDataApiDriver.js": "./browser/platform/BrowserDisabledDriversDummy.js", "./browser/driver/better-sqlite3/BetterSqlite3Driver.js": "./browser/platform/BrowserDisabledDriversDummy.js", "./browser/driver/cockroachdb/CockroachDriver.js": "./browser/platform/BrowserDisabledDriversDummy.js", "./browser/driver/mongodb/MongoDriver.js": "./browser/platform/BrowserDisabledDriversDummy.js", "./browser/driver/mongodb/MongoQueryRunner.js": "./browser/platform/BrowserDisabledDriversDummy.js", "./browser/driver/mongodb/typings.js": "./browser/platform/BrowserDisabledDriversDummy.js", "./browser/driver/mongodb/bson.typings.js": "./browser/platform/BrowserDisabledDriversDummy.js", "./browser/driver/mysql/MysqlDriver.js": "./browser/platform/BrowserDisabledDriversDummy.js", "./browser/driver/oracle/OracleDriver.js": "./browser/platform/BrowserDisabledDriversDummy.js", "./browser/driver/postgres/PostgresDriver.js": "./browser/platform/BrowserDisabledDriversDummy.js", "./browser/driver/sap/SapDriver.js": "./browser/platform/BrowserDisabledDriversDummy.js", "./browser/driver/sqlite/SqliteDriver.js": "./browser/platform/BrowserDisabledDriversDummy.js", "./browser/driver/sqlserver/SqlServerDriver.js": "./browser/platform/BrowserDisabledDriversDummy.js", "./browser/entity-manager/MongoEntityManager.js": "./browser/platform/BrowserDisabledDriversDummy.js", "./browser/logger/FileLogger.js": "./browser/platform/BrowserFileLoggerDummy.js", "./browser/platform/PlatformTools.js": "./browser/platform/BrowserPlatformTools.js", "./browser/repository/MongoRepository.js": "./browser/platform/BrowserDisabledDriversDummy.js", "./browser/util/DirectoryExportedClassesLoader.js": "./browser/platform/BrowserDirectoryExportedClassesLoader.js", "./index.js": "./browser/index.js", "./index.mjs": "./browser/index.js" }, "repository": { "type": "git", "url": "https://github.com/typeorm/typeorm.git" }, "bugs": { "url": "https://github.com/typeorm/typeorm/issues" }, "homepage": "https://typeorm.io", "tags": [ "orm", "typescript", "typescript-orm", "mysql", "mysql-orm", "postgresql", "postgresql-orm", "mariadb", "mariadb-orm", "spanner", "sqlite", "sqlite-orm", "sql-server", "sql-server-orm", "oracle", "oracle-orm", "cloud-spanner", "cloud-spanner-orm" ], "devDependencies": { "@types/app-root-path": "^1.2.4", "@types/chai": "^4.3.4", "@types/chai-as-promised": "^7.1.5", "@types/debug": "^4.1.7", "@types/mkdirp": "^1.0.2", "@types/mocha": "^10.0.1", "@types/node": "^18.13.0", "@types/sha.js": "^2.4.0", "@types/sinon": "^10.0.13", "@types/source-map-support": "^0.5.6", "@types/uuid": "^9.0.0", "@types/yargs": "^17.0.22", "better-sqlite3": "^8.1.0", "chai": "^4.3.7", "chai-as-promised": "^7.1.1", "class-transformer": "^0.5.1", "conventional-changelog-angular": "^5.0.13", "conventional-changelog-cli": "^2.2.2", "del": "6.1.1", "gulp": "^4.0.2", "gulp-istanbul": "^1.1.3", "gulp-mocha": "^8.0.0", "gulp-rename": "^2.0.0", "gulp-replace": "^1.1.4", "gulp-shell": "^0.8.0", "gulp-sourcemaps": "^3.0.0", "gulp-typescript": "^6.0.0-alpha.1", "gulpclass": "^0.2.0", "husky": "^8.0.3", "mocha": "^10.2.0", "mongodb": "^5.2.0", "mssql": "^9.1.1", "mysql": "^2.18.1", "mysql2": "^3.1.1", "pg": "^8.9.0", "pg-query-stream": "^4.3.0", "prettier": "^2.8.3", "redis": "^4.6.4", "remap-istanbul": "^0.13.0", "rimraf": "^4.1.2", "sinon": "^15.0.1", "sinon-chai": "^3.7.0", "source-map-support": "^0.5.21", "sql.js": "^1.8.0", "sqlite3": "^5.1.4", "ts-node": "^10.9.1", "typeorm-aurora-data-api-driver": "^2.4.4", "typescript": "^4.9.5" }, "peerDependencies": { "@google-cloud/spanner": "^5.18.0", "@sap/hana-client": "^2.12.25", "better-sqlite3": "^7.1.2 || ^8.0.0", "hdb-pool": "^0.1.6", "ioredis": "^5.0.4", "mongodb": "^5.2.0", "mssql": "^9.1.1", "mysql2": "^2.2.5 || ^3.0.1", "oracledb": "^5.1.0", "pg": "^8.5.1", "pg-native": "^3.0.0", "pg-query-stream": "^4.0.0", "redis": "^3.1.1 || ^4.0.0", "sql.js": "^1.4.0", "sqlite3": "^5.0.3", "ts-node": "^10.7.0", "typeorm-aurora-data-api-driver": "^2.0.0" }, "peerDependenciesMeta": { "@google-cloud/spanner": { "optional": true }, "@sap/hana-client": { "optional": true }, "better-sqlite3": { "optional": true }, "hdb-pool": { "optional": true }, "ioredis": { "optional": true }, "mongodb": { "optional": true }, "mssql": { "optional": true }, "mysql2": { "optional": true }, "oracledb": { "optional": true }, "pg": { "optional": true }, "pg-native": { "optional": true }, "pg-query-stream": { "optional": true }, "redis": { "optional": true }, "sql.js": { "optional": true }, "sqlite3": { "optional": true }, "ts-node": { "optional": true }, "typeorm-aurora-data-api-driver": { "optional": true } }, "dependencies": { "@sqltools/formatter": "^1.2.5", "app-root-path": "^3.1.0", "buffer": "^6.0.3", "chalk": "^4.1.2", "cli-highlight": "^2.1.11", "date-fns": "^2.29.3", "debug": "^4.3.4", "dotenv": "^16.0.3", "glob": "^8.1.0", "mkdirp": "^2.1.3", "reflect-metadata": "^0.1.13", "sha.js": "^2.4.11", "tslib": "^2.5.0", "uuid": "^9.0.0", "yargs": "^17.6.2" }, "scripts": { "test": "rimraf ./build && tsc && mocha --file ./build/compiled/test/utils/test-setup.js --bail --recursive --timeout 90000 ./build/compiled/test", "test-fast": "mocha --file ./build/compiled/test/utils/test-setup.js --bail --recursive --timeout 90000 ./build/compiled/test", "compile": "rimraf ./build && tsc", "watch": "./node_modules/.bin/tsc -w", "package": "gulp package", "pack": "gulp pack", "lint": "prettier --check \"./src/**/*.ts\" \"./test/**/*.ts\" \"./sample/**/*.ts\"", "format": "prettier --write --end-of-line auto \"./src/**/*.ts\" \"./test/**/*.ts\" \"./sample/**/*.ts\"", "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 2" }, "bin": { "typeorm": "./cli.js", "typeorm-ts-node-commonjs": "./cli-ts-node-commonjs.js", "typeorm-ts-node-esm": "./cli-ts-node-esm.js" }, "funding": "https://opencollective.com/typeorm", "collective": { "type": "opencollective", "url": "https://opencollective.com/typeorm", "logo": "https://opencollective.com/opencollective/logo.txt" }, "nyc": { "all": true, "cache": false, "exclude": [ "**/*.d.ts" ], "extension": [ ".ts" ], "include": [ "build/compiled/src/**", "src/**" ], "reporter": "json" } }
|