-
-
Notifications
You must be signed in to change notification settings - Fork 4.3k
/
Copy pathpackage.json
170 lines (170 loc) · 7.14 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
{
"name": "@sequelize/core",
"description": "Sequelize is a promise-based Node.js ORM tool for Postgres, MySQL, MariaDB, SQLite, Microsoft SQL Server, Amazon Redshift, Snowflake’s Data Cloud, Db2, and IBM i. It features solid transaction support, relations, eager and lazy loading, read replication and more.",
"version": "7.0.0-alpha.44",
"funding": [
{
"type": "opencollective",
"url": "https://opencollective.com/sequelize"
}
],
"repository": {
"type": "git",
"url": "[email protected]:sequelize/sequelize.git"
},
"bugs": {
"url": "https://github.com/sequelize/sequelize/issues"
},
"homepage": "https://sequelize.org/",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"type": "commonjs",
"exports": {
".": {
"import": {
"types": "./lib/index.d.mts",
"default": "./lib/index.mjs"
},
"require": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
}
},
"./decorators-legacy": {
"import": "./lib/decorators/legacy/index.mjs",
"require": {
"types": "./lib/decorators/legacy/index.d.ts",
"default": "./lib/decorators/legacy/index.js"
}
},
"./_non-semver-use-at-your-own-risk_/*": "./lib/*",
"./package.json": "./package.json"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"lib"
],
"license": "MIT",
"dependencies": {
"@sequelize/utils": "workspace:*",
"@types/debug": "^4.1.12",
"@types/validator": "^13.11.9",
"ansis": "^3.2.0",
"bnf-parser": "^3.1.6",
"dayjs": "^1.11.10",
"debug": "^4.3.4",
"dottie": "^2.0.6",
"fast-glob": "^3.3.2",
"inflection": "^3.0.0",
"lodash": "^4.17.21",
"retry-as-promised": "^7.0.4",
"semver": "^7.3",
"sequelize-pool": "^8.0.0",
"toposort-class": "^1.0.1",
"type-fest": "^4.14.0",
"uuid": "^11.0.0",
"validator": "^13.11.0"
},
"devDependencies": {
"@types/chai": "4.3.20",
"@types/chai-as-promised": "7.1.8",
"@types/chai-datetime": "1.0.0",
"@types/lodash": "4.17.15",
"@types/mocha": "10.0.10",
"@types/semver": "7.5.8",
"@types/sinon": "17.0.3",
"@types/sinon-chai": "3.2.12",
"chai": "4.5.0",
"chai-as-promised": "7.1.2",
"chai-datetime": "1.8.1",
"delay": "5.0.0",
"expect-type": "0.13.0",
"fs-jetpack": "5.1.0",
"lcov-result-merger": "5.0.1",
"mocha": "11.1.0",
"moment": "2.30.1",
"nyc": "17.1.0",
"p-map": "4.0.0",
"p-props": "4.0.0",
"p-settle": "4.1.1",
"p-timeout": "4.1.0",
"rimraf": "5.0.10",
"sinon": "18.0.1",
"sinon-chai": "3.7.0"
},
"keywords": [
"mysql",
"mariadb",
"sqlite",
"sqlite3",
"postgresql",
"postgres",
"pg",
"mssql",
"db2",
"ibm_db",
"sql",
"sqlserver",
"snowflake",
"orm",
"nodejs",
"object relational mapper",
"database",
"db"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"----------------------------------------- static analysis -----------------------------------------": "",
"test-typings": "tsc --noEmit && tsc -b test/tsconfig.json",
"----------------------------------------- tests ---------------------------------------------------": "",
"mocha": "mocha -r ../../test/register-esbuild.js",
"_test-unit": "yarn mocha \"test/unit/**/*.test.[tj]s\"",
"test-integration": "yarn mocha \"test/integration/**/*.test.[tj]s\"",
"test-smoke": "yarn mocha \"test/smoke/**/*.test.[tj]s\" --timeout 600000",
"teaser": "ts-node test/teaser.ts",
"test": "yarn build && yarn test-typings && yarn teaser && yarn _test-unit && yarn test-integration",
"----------------------------------------- coverage ------------------------------------------------": "",
"cover": "rimraf coverage && yarn teaser && yarn cover-integration && yarn cover-unit && yarn merge-coverage",
"cover-integration": "cross-env COVERAGE=true nyc --reporter=lcovonly yarn mocha \"test/integration/**/*.test.[tj]s\" && node -e \"require('fs').renameSync('coverage/lcov.info', 'coverage/integration.info')\"",
"cover-unit": "cross-env COVERAGE=true nyc --reporter=lcovonly yarn mocha \"test/unit/**/*.test.[tj]s\" && node -e \"require('fs').renameSync('coverage/lcov.info', 'coverage/unit.info')\"",
"merge-coverage": "lcov-result-merger \"coverage/*.info\" \"coverage/lcov.info\"",
"----------------------------------------- unit tests ---------------------------------------------": "",
"test-unit-mariadb": "cross-env DIALECT=mariadb yarn _test-unit",
"test-unit-mysql": "cross-env DIALECT=mysql yarn _test-unit",
"test-unit-postgres": "cross-env DIALECT=postgres yarn _test-unit",
"test-unit-sqlite3": "cross-env DIALECT=sqlite3 yarn _test-unit",
"test-unit-mssql": "cross-env DIALECT=mssql yarn _test-unit",
"test-unit-db2": "cross-env DIALECT=db2 yarn _test-unit",
"test-unit-ibmi": "cross-env DIALECT=ibmi yarn _test-unit",
"test-unit-snowflake": "cross-env DIALECT=snowflake yarn _test-unit",
"test-unit-all": "yarn test-unit-mariadb && yarn test-unit-mysql && yarn test-unit-postgres && yarn test-unit-mssql && yarn test-unit-sqlite3 && yarn test-unit-snowflake && yarn test-unit-db2 && yarn test-unit-ibmi",
"test-unit": "yarn test-unit-all",
"----------------------------------------- integration tests ---------------------------------------------": "",
"test-integration-mariadb": "cross-env DIALECT=mariadb yarn test-integration",
"test-integration-mysql": "cross-env DIALECT=mysql yarn test-integration",
"test-integration-postgres": "cross-env DIALECT=postgres yarn test-integration",
"test-integration-postgres-native": "cross-env DIALECT=postgres-native yarn test-integration",
"test-integration-sqlite3": "cross-env DIALECT=sqlite3 yarn test-integration",
"test-integration-mssql": "cross-env DIALECT=mssql yarn test-integration",
"test-integration-db2": "cross-env DIALECT=db2 yarn test-integration",
"test-integration-ibmi": "cross-env DIALECT=ibmi yarn test-integration",
"test-integration-snowflake": "cross-env DIALECT=snowflake yarn test-integration",
"test-integration-all": "yarn test-integration-mariadb && yarn test-integration-mysql && yarn test-integration-postgres && yarn test-integration-postgres-native && yarn test-integration-sqlite3 && yarn test-integration-mssql && yarn test-integration-db2 && yarn test-integration-ibmi && yarn test-integration-snowflake",
"----------------------------------------- all tests ---------------------------------------------": "",
"test-mariadb": "cross-env DIALECT=mariadb yarn test",
"test-mysql": "cross-env DIALECT=mysql yarn test",
"test-sqlite3": "cross-env DIALECT=sqlite3 yarn test",
"test-postgres": "cross-env DIALECT=postgres yarn test",
"test-postgres-native": "cross-env DIALECT=postgres-native yarn test",
"test-mssql": "cross-env DIALECT=mssql yarn test",
"test-db2": "cross-env DIALECT=db2 yarn test",
"test-ibmi": "cross-env DIALECT=ibmi yarn test",
"----------------------------------------- development ---------------------------------------------": "",
"build": "node ../../build-packages.mjs core"
},
"support": true
}