forked from sequelize/sequelize
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
213 lines (213 loc) · 7.96 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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
{
"name": "sequelize",
"description": "Multi dialect ORM for Node.JS",
"version": "0.0.0-development",
"maintainers": [
"Sascha Depold <[email protected]>",
"Jan Aagaard Meier <[email protected]>",
"Daniel Durante <[email protected]>",
"Mick Hansen <[email protected]>",
"Sushant Dhiman <[email protected]>"
],
"repository": {
"type": "git",
"url": "https://github.com/sequelize/sequelize.git"
},
"bugs": {
"url": "https://github.com/sequelize/sequelize/issues"
},
"homepage": "https://sequelize.org/",
"main": "index.js",
"types": "types",
"engines": {
"node": ">=12.0.0"
},
"files": [
"lib",
"types"
],
"license": "MIT",
"dependencies": {
"debug": "^4.1.1",
"dottie": "^2.0.0",
"inflection": "1.12.0",
"lodash": "^4.17.15",
"moment": "^2.26.0",
"moment-timezone": "^0.5.31",
"retry-as-promised": "^3.2.0",
"semver": "^7.3.2",
"sequelize-pool": "^6.1.0",
"toposort-class": "^1.0.1",
"uuid": "^8.1.0",
"validator": "^10.11.0",
"wkx": "^0.5.0"
},
"devDependencies": {
"@commitlint/cli": "9.1.2",
"@commitlint/config-angular": "8.3.4",
"@types/debug": "4.1.5",
"@types/lodash": "^4.14.157",
"@types/node": "12.12.47",
"@types/uuid": "^8.0.0",
"@types/validator": "10.11.3",
"@typescript-eslint/eslint-plugin": "3.4.0",
"@typescript-eslint/parser": "3.4.0",
"acorn": "7.2.0",
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"chai-datetime": "1.7.0",
"cheerio": "1.0.0-rc.3",
"cls-hooked": "4.2.2",
"cross-env": "7.0.2",
"delay": "4.4.0",
"dtslint": "3.6.4",
"env-cmd": "10.1.0",
"esdoc": "1.1.0",
"esdoc-ecmascript-proposal-plugin": "1.0.0",
"esdoc-inject-style-plugin": "1.0.0",
"esdoc-standard-plugin": "1.0.0",
"eslint": "6.8.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-jsdoc": "20.4.0",
"eslint-plugin-mocha": "6.3.0",
"eslint-plugin-prettier": "3.1.4",
"fs-jetpack": "2.4.0",
"husky": "4.2.5",
"js-combinatorics": "0.5.5",
"lcov-result-merger": "3.1.0",
"lint-staged": "10.2.6",
"mariadb": "2.3.1",
"markdownlint-cli": "0.23.1",
"marked": "1.1.0",
"mocha": "7.1.2",
"mysql2": "2.1.0",
"nyc": "15.0.1",
"p-map": "4.0.0",
"p-props": "4.0.0",
"p-timeout": "3.2.0",
"pg": "8.2.1",
"pg-hstore": "2.3.3",
"prettier": "2.0.5",
"rimraf": "3.0.2",
"semantic-release": "17.0.7",
"sinon": "9.0.2",
"sinon-chai": "3.5.0",
"sqlite3": "4.2.0",
"tedious": "8.3.0",
"typescript": "3.9.5"
},
"peerDependenciesMeta": {
"pg": {
"optional": true
},
"pg-hstore": {
"optional": true
},
"mysql2": {
"optional": true
},
"mariadb": {
"optional": true
},
"sqlite3": {
"optional": true
},
"tedious": {
"optional": true
}
},
"keywords": [
"mysql",
"mariadb",
"sqlite",
"postgresql",
"postgres",
"mssql",
"orm",
"nodejs",
"object relational mapper"
],
"options": {
"env_cmd": "-f ./test/config/.docker.env"
},
"commitlint": {
"extends": [
"@commitlint/config-angular"
]
},
"lint-staged": {
"*.js": "eslint",
"*.ts": "eslint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"release": {
"branch": "master",
"verifyConditions": [
"@semantic-release/npm",
"@semantic-release/github"
]
},
"publishConfig": {
"tag": "latest"
},
"prettier": {
"singleQuote": true,
"printWidth": 120,
"arrowParens": "avoid",
"trailingComma": "none"
},
"scripts": {
"tsc": "tsc",
"pretty": "prettier src test --write",
"lint": "eslint --ext .js,.ts src test --quiet",
"lint-docs": "markdownlint docs",
"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 $npm_package_options_env_cmd npm run test-integration",
"docs": "rimraf esdoc && esdoc -c docs/esdoc-config.js && cp docs/favicon.ico esdoc/favicon.ico && cp docs/ROUTER.txt esdoc/ROUTER && node docs/run-docs-transforms.js && node docs/redirects/create-redirects.js && rimraf esdoc/file esdoc/source.html",
"teaser": "node scripts/teaser",
"test-unit": "mocha --require scripts/mocha-bootload --globals setImmediate,clearImmediate --exit --check-leaks --colors -t 30000 --reporter spec \"test/unit/**/*.js\"",
"test-unit-mariadb": "cross-env DIALECT=mariadb npm run test-unit",
"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-mariadb && 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 --require scripts/mocha-bootload --globals setImmediate,clearImmediate --exit --check-leaks --colors -t 30000 --reporter spec \"test/integration/**/*.test.js\"",
"test-integration-mariadb": "cross-env DIALECT=mariadb npm run test-integration",
"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-mariadb && 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-mariadb": "cross-env DIALECT=mariadb npm test",
"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-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-mariadb && npm run test-mysql && npm run test-sqlite && npm run test-postgres && npm run test-postgres-native && npm run test-mssql",
"cover": "rimraf coverage && npm run teaser && npm run cover-integration && npm run cover-unit && npm run merge-coverage",
"cover-integration": "cross-env COVERAGE=true nyc --reporter=lcovonly mocha --require scripts/mocha-bootload -t 30000 --exit \"test/integration/**/*.test.js\" && node -e \"require('fs').renameSync('coverage/lcov.info', 'coverage/integration.info')\"",
"cover-unit": "cross-env COVERAGE=true nyc --reporter=lcovonly mocha --require scripts/mocha-bootload -t 30000 --exit \"test/unit/**/*.test.js\" && node -e \"require('fs').renameSync('coverage/lcov.info', 'coverage/unit.info')\"",
"merge-coverage": "lcov-result-merger \"coverage/*.info\" \"coverage/lcov.info\"",
"sscce": "env-cmd $npm_package_options_env_cmd node sscce.js",
"sscce-mariadb": "cross-env DIALECT=mariadb npm run sscce",
"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",
"sscce-mssql": "cross-env DIALECT=mssql npm run sscce",
"setup-mssql": "env-cmd $npm_package_options_env_cmd ./scripts/setup-mssql",
"semantic-release": "semantic-release"
}
}