UNPKG

7.35 kBJSONView Raw
1{
2 "name": "sequelize",
3 "description": "Multi dialect ORM for Node.JS",
4 "version": "5.21.5",
5 "author": "Sascha Depold <sascha@depold.com>",
6 "contributors": [
7 "Sascha Depold <sascha@depold.com>",
8 "Jan Aagaard Meier <janzeh@gmail.com>",
9 "Daniel Durante <me@danieldurante.com>",
10 "Mick Hansen <mick.kasper.hansen@gmail.com>",
11 "Sushant Dhiman <sushantdhiman@outlook.com>"
12 ],
13 "repository": {
14 "type": "git",
15 "url": "https://github.com/sequelize/sequelize.git"
16 },
17 "bugs": {
18 "url": "https://github.com/sequelize/sequelize/issues"
19 },
20 "homepage": "https://sequelize.org/",
21 "main": "index.js",
22 "types": "types",
23 "engines": {
24 "node": ">=6.0.0"
25 },
26 "files": [
27 "lib",
28 "types/index.d.ts",
29 "types/lib"
30 ],
31 "license": "MIT",
32 "dependencies": {
33 "bluebird": "^3.5.0",
34 "cls-bluebird": "^2.1.0",
35 "debug": "^4.1.1",
36 "dottie": "^2.0.0",
37 "inflection": "1.12.0",
38 "lodash": "^4.17.15",
39 "moment": "^2.24.0",
40 "moment-timezone": "^0.5.21",
41 "retry-as-promised": "^3.2.0",
42 "semver": "^6.3.0",
43 "sequelize-pool": "^2.3.0",
44 "toposort-class": "^1.0.1",
45 "uuid": "^3.3.3",
46 "validator": "^10.11.0",
47 "wkx": "^0.4.8"
48 },
49 "devDependencies": {
50 "@commitlint/cli": "^8.2.0",
51 "@commitlint/config-angular": "^8.2.0",
52 "@types/bluebird": "^3.5.26",
53 "@types/node": "^12.7.8",
54 "@types/validator": "^10.11.0",
55 "big-integer": "^1.6.45",
56 "chai": "^4.x",
57 "chai-as-promised": "^7.x",
58 "chai-datetime": "^1.x",
59 "chai-spies": "^1.x",
60 "continuation-local-storage": "^3.x",
61 "cross-env": "^5.2.1",
62 "env-cmd": "^8.0.2",
63 "esdoc": "^1.1.0",
64 "esdoc-inject-style-plugin": "^1.0.0",
65 "esdoc-standard-plugin": "^1.0.0",
66 "eslint": "^6.4.0",
67 "eslint-plugin-jsdoc": "^4.1.1",
68 "eslint-plugin-mocha": "^5.2.1",
69 "fs-jetpack": "^2.2.2",
70 "husky": "^1.3.1",
71 "js-combinatorics": "^0.5.4",
72 "lcov-result-merger": "^3.0.0",
73 "lint-staged": "^8.1.5",
74 "mariadb": "^2.1.1",
75 "markdownlint-cli": "^0.18.0",
76 "mocha": "^6.1.4",
77 "mysql2": "^1.6.5",
78 "nyc": "^14.1.1",
79 "pg": "^7.8.1",
80 "pg-hstore": "^2.x",
81 "pg-types": "^2.0.0",
82 "rimraf": "^2.6.3",
83 "semantic-release": "^15.13.16",
84 "sinon": "^7.5.0",
85 "sinon-chai": "^3.3.0",
86 "sqlite3": "^4.0.6",
87 "tedious": "6.0.0",
88 "typescript": "^3.6.3"
89 },
90 "keywords": [
91 "mysql",
92 "mariadb",
93 "sqlite",
94 "postgresql",
95 "postgres",
96 "mssql",
97 "orm",
98 "nodejs",
99 "object relational mapper"
100 ],
101 "options": {
102 "env_cmd": "./test/config/.docker.env"
103 },
104 "commitlint": {
105 "extends": [
106 "@commitlint/config-angular"
107 ]
108 },
109 "lint-staged": {
110 "*.js": "eslint"
111 },
112 "husky": {
113 "hooks": {
114 "pre-commit": "lint-staged",
115 "commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
116 }
117 },
118 "release": {
119 "branch": "v5",
120 "verifyConditions": [
121 "@semantic-release/npm",
122 "@semantic-release/github"
123 ]
124 },
125 "publishConfig": {
126 "tag": "latest"
127 },
128 "scripts": {
129 "lint": "eslint lib test --quiet",
130 "lint-docs": "markdownlint docs",
131 "test": "npm run teaser && npm run test-unit && npm run test-integration",
132 "test-docker": "npm run test-docker-unit && npm run test-docker-integration",
133 "test-docker-unit": "npm run test-unit",
134 "test-docker-integration": "env-cmd $npm_package_options_env_cmd npm run test-integration",
135 "docs": "esdoc -c docs/esdoc-config.js && node docs/run-docs-transforms.js && cp docs/favicon.ico esdoc/favicon.ico && cp docs/ROUTER.txt esdoc/ROUTER",
136 "teaser": "node scripts/teaser",
137 "test-unit": "mocha --require scripts/mocha-bootload --globals setImmediate,clearImmediate --exit --check-leaks --colors -t 30000 --reporter spec \"test/unit/**/*.js\"",
138 "test-unit-mariadb": "cross-env DIALECT=mariadb npm run test-unit",
139 "test-unit-mysql": "cross-env DIALECT=mysql npm run test-unit",
140 "test-unit-postgres": "cross-env DIALECT=postgres npm run test-unit",
141 "test-unit-postgres-native": "cross-env DIALECT=postgres-native npm run test-unit",
142 "test-unit-sqlite": "cross-env DIALECT=sqlite npm run test-unit",
143 "test-unit-mssql": "cross-env DIALECT=mssql npm run test-unit",
144 "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",
145 "test-integration": "mocha --require scripts/mocha-bootload --globals setImmediate,clearImmediate --exit --check-leaks --colors -t 30000 --reporter spec \"test/integration/**/*.test.js\"",
146 "test-integration-mariadb": "cross-env DIALECT=mariadb npm run test-integration",
147 "test-integration-mysql": "cross-env DIALECT=mysql npm run test-integration",
148 "test-integration-postgres": "cross-env DIALECT=postgres npm run test-integration",
149 "test-integration-postgres-native": "cross-env DIALECT=postgres-native npm run test-integration",
150 "test-integration-sqlite": "cross-env DIALECT=sqlite npm run test-integration",
151 "test-integration-mssql": "cross-env DIALECT=mssql npm run test-integration",
152 "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",
153 "test-mariadb": "cross-env DIALECT=mariadb npm test",
154 "test-mysql": "cross-env DIALECT=mysql npm test",
155 "test-sqlite": "cross-env DIALECT=sqlite npm test",
156 "test-postgres": "cross-env DIALECT=postgres npm test",
157 "test-pgsql": "npm run test-postgres",
158 "test-postgres-native": "cross-env DIALECT=postgres-native npm test",
159 "test-postgresn": "npm run test-postgres-native",
160 "test-mssql": "cross-env DIALECT=mssql npm test",
161 "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",
162 "test-typings": "tsc -b types/tsconfig.json && tsc -b types/test/tsconfig.json",
163 "cover": "rimraf coverage && npm run teaser && npm run cover-integration && npm run cover-unit && npm run merge-coverage",
164 "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')\"",
165 "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')\"",
166 "merge-coverage": "lcov-result-merger \"coverage/*.info\" \"coverage/lcov.info\"",
167 "sscce": "env-cmd $npm_package_options_env_cmd node sscce.js",
168 "sscce-mariadb": "cross-env DIALECT=mariadb npm run sscce",
169 "sscce-mysql": "cross-env DIALECT=mysql npm run sscce",
170 "sscce-postgres": "cross-env DIALECT=postgres npm run sscce",
171 "sscce-sqlite": "cross-env DIALECT=sqlite npm run sscce",
172 "sscce-mssql": "cross-env DIALECT=mssql npm run sscce",
173 "setup-mssql": "env-cmd $npm_package_options_env_cmd ./scripts/setup-mssql",
174 "semantic-release": "semantic-release"
175 }
176}