-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.29 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.29 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
{
"name": "sequelize-cockroachdb",
"version": "6.0.5",
"description": "Support using Sequelize with CockroachDB.",
"license": "Apache-2.0",
"repository": "cockroachdb/sequelize-cockroachdb",
"homepage": "https://www.cockroachlabs.com/docs/stable/build-a-nodejs-app-with-cockroachdb-sequelize.html",
"author": "Cuong Do <cdo@cockroachlabs.com>",
"keywords": [
"database",
"sequelize",
"cockroach",
"cockroachdb",
"orm",
"object relational mapper"
],
"engines": {
"node": ">=12"
},
"main": "source/index.js",
"types": "types",
"files": [
"source",
"types"
],
"scripts": {
"lint": "prettier --write .",
"test": "env CRDB_VERSION=$npm_config_crdb_version mocha --check-leaks --colors -t 300000 --reporter spec \"tests/*_test.js\""
},
"dependencies": {
"lodash": "^4.17.20",
"p-settle": "^4.1.1",
"pg": "^8.4.1",
"semver": "^7.3.2"
},
"devDependencies": {
"assert": "^2.0.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-datetime": "^1.7.0",
"cls-hooked": "^4.2.2",
"delay": "^5.0.0",
"mocha": "^8.2.0",
"p-timeout": "^4.1.0",
"prettier": "2.2.1",
"sequelize": "^6.13.0",
"sinon": "^9.2.4",
"sinon-chai": "^3.5.0"
},
"peerDependencies": {
"sequelize": "5 - 6"
}
}