forked from sequelize/sequelize
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 5.13 KB
/
Copy pathpackage.json
File metadata and controls
124 lines (124 loc) · 5.13 KB
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
{
"name": "sequelize",
"version": "400.47.2",
"description": "Multi dialect ORM for Node.JS",
"keywords": [
"mssql",
"mysql",
"nodejs",
"object relational mapper",
"orm",
"postgres",
"postgresql",
"sqlite"
],
"bugs": {
"url": "https://github.com/sequelize/sequelize/issues"
},
"license": "MIT",
"author": "Sascha Depold <sascha@depold.com>",
"repository": {
"type": "git",
"url": "https://github.com/sequelize/sequelize.git"
},
"files": [
"lib",
"index.js",
"index.d.ts"
],
"main": "index",
"types": "index.d.ts",
"scripts": {
"lint": "oxlint --quiet lib test",
"test:types": "tsgo --noEmit -p tsconfig.json",
"fmt": "oxfmt --write lib test",
"fmt:check": "oxfmt --check lib test",
"test": "npm run teaser && npm run test-unit && npm run test-integration",
"test-docker": "npm run test-docker-unit && npm run test-docker-integration",
"test-docker-unit": "npm run test-unit",
"test-docker-integration": "env-cmd -f ./test/config/.docker.env npm run test-integration",
"teaser": "node -e \"console.log('#'.repeat(process.env.DIALECT.length + 22) + '\\n# Running tests for ' + process.env.DIALECT + ' #\\n' + '#'.repeat(process.env.DIALECT.length + 22))\"",
"test-unit": "mocha --globals setImmediate,clearImmediate --exit --colors -t 30000 --reporter spec \"test/unit/**/*.js\"",
"test-unit-mysql": "cross-env DIALECT=mysql npm run test-unit",
"test-unit-postgres": "cross-env DIALECT=postgres npm run test-unit",
"test-unit-postgres-native": "cross-env DIALECT=postgres-native npm run test-unit",
"test-unit-sqlite": "cross-env DIALECT=sqlite npm run test-unit",
"test-unit-mssql": "cross-env DIALECT=mssql npm run test-unit",
"test-unit-all": "npm run test-unit-mysql && npm run test-unit-postgres && npm run test-unit-postgres-native && npm run test-unit-mssql && npm run test-unit-sqlite",
"test-integration": "mocha --globals setImmediate,clearImmediate --exit --colors -t 30000 --reporter spec \"test/integration/**/*.test.js\"",
"test-integration-mysql": "cross-env DIALECT=mysql npm run test-integration",
"test-integration-postgres": "cross-env DIALECT=postgres npm run test-integration",
"test-integration-postgres-native": "cross-env DIALECT=postgres-native npm run test-integration",
"test-integration-sqlite": "cross-env DIALECT=sqlite npm run test-integration",
"test-integration-mssql": "cross-env DIALECT=mssql npm run test-integration",
"test-integration-all": "npm run test-integration-mysql && npm run test-integration-postgres && npm run test-integration-postgres-native && npm run test-integration-mssql && npm run test-integration-sqlite",
"test-mysql": "cross-env DIALECT=mysql npm test",
"test-sqlite": "cross-env DIALECT=sqlite npm test",
"test-postgres": "cross-env DIALECT=postgres npm test",
"test-postgres-docker": "DIALECT=postgres SEQ_PORT=8996 SEQ_USER=sequelize_test SEQ_PW=sequelize_test SEQ_DB=sequelize_test npm test",
"test-integration-postgres-docker": "DIALECT=postgres SEQ_PORT=8996 SEQ_USER=sequelize_test SEQ_PW=sequelize_test SEQ_DB=sequelize_test npm run test-integration",
"test-pgsql": "npm run test-postgres",
"test-postgres-native": "cross-env DIALECT=postgres-native npm test",
"test-postgresn": "npm run test-postgres-native",
"test-mssql": "cross-env DIALECT=mssql npm test",
"test-all": "npm run test-mysql && npm run test-sqlite && npm run test-postgres && npm run test-postgres-native && npm run test-mssql",
"sscce": "env-cmd -f $npm_package_options_env_cmd node sscce.js",
"sscce-mysql": "cross-env DIALECT=mysql npm run sscce",
"sscce-postgres": "cross-env DIALECT=postgres npm run sscce",
"sscce-sqlite": "cross-env DIALECT=sqlite npm run sscce"
},
"dependencies": {
"debug": "^4.4.3",
"depd": "^2.0.0",
"dottie": "^2.0.7",
"generic-pool": "3.9.0",
"inflection": "^3.0.2",
"lodash": "^4.18.1",
"moment": "^2.30.1",
"moment-timezone": "^0.6.1",
"retry-as-promised": "^3.0.0",
"semver": "^7.0.0",
"terraformer-wkt-parser": "^1.1.2",
"toposort-class": "^1.0.1",
"uuid": "^14.0.1",
"validator": "^13.7.0",
"wkx": "^0.5.0"
},
"devDependencies": {
"@types/cls-hooked": "4.3.9",
"@types/lodash": "4.17.24",
"@types/node": "26.1.0",
"@types/validator": "13.15.10",
"@typescript/native-preview": "^7.0.0-dev.20260619.1",
"big-integer": "1.6.52",
"chai": "6.2.2",
"chai-as-promised": "8.0.2",
"cheerio": "1.2.0",
"cls-hooked": "4.2.2",
"cross-env": "10.1.0",
"env-cmd": "11.0.0",
"hints": "1.1.0",
"mocha": "11.7.6",
"mysql2": "1.5.3",
"oxfmt": "0.58.0",
"oxlint": "1.73.0",
"pg": "8.22.0",
"pg-hstore": "2.3.4",
"pg-native": "3.8.0",
"pg-types": "2.2.0",
"sinon": "22.0.0",
"sqlite3": "6.0.1",
"tedious": "3.0.1",
"uuid-validate": "0.0.3"
},
"peerDependencies": {
"pg": "^8.19.0"
},
"engines": {
"node": ">=20.20.0"
},
"options": {
"env_cmd": "./test/config/.docker.env",
"mocha": "--globals setImmediate,clearImmediate --exit --colors -t 30000 --reporter spec"
}
}