-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
40 lines (40 loc) · 931 Bytes
/
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
{
"name": "sequelize-yugabytedb",
"version": "1.0.5",
"description": "For Making Sequelize compatible with YugabyteDB",
"main": "source/index.js",
"types": "types",
"files": [
"source",
"types"
],
"scripts": {
"test": "mocha test/*test.js -t 300000 --reporter spec"
},
"keywords": [
"yugabytedb",
"sequelize",
"sequelize-yugabytedb",
"database",
"orm"
],
"author": "Sanyam Singhal <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"pg": "^8.6.0",
"sequelize": "^6.6.5"
},
"devDependencies": {
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"mocha": "^9.0.3"
},
"repository": {
"type": "git",
"url": "https://github.com/yugabyte/sequelize-yugabytedb"
},
"bugs": {
"url": "https://github.com/yugabyte/sequelize-yugabytedb/issues"
},
"homepage": "https://github.com/yugabyte/sequelize-yugabytedb#readme"
}