-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.21 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
{
"name": "sequelize-model-stream",
"version": "1.1.0",
"description": "Stream data directly from your DB using your Sequelize's models",
"main": "src/index.js",
"scripts": {
"test": "./node_modules/.bin/jest --no-cache",
"tdd": "./node_modules/.bin/jest --watch --no-cache",
"lint": "./node_modules/.bin/eslint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/onhernandes/sequelize-stream.git"
},
"keywords": [
"sequelize",
"sequelize-stream",
"stream",
"mysql",
"mysql-stream",
"sqlite",
"sqlite-stream",
"postgresql",
"postgresql-stream",
"mariadb",
"mariadb-stream"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/onhernandes/sequelize-stream/issues"
},
"homepage": "https://github.com/onhernandes/sequelize-stream#readme",
"devDependencies": {
"eslint": "^7.9.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^26.4.2",
"mysql2": "^2.2.5",
"sequelize": "^4"
},
"peerDependencies": {
"sequelize": "^4"
}
}