-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
61 lines (61 loc) · 1.33 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
{
"name": "sequelize-automate",
"version": "1.2.2",
"description": "Automatically generate bare sequelize models from your database.",
"main": "index",
"keywords": [
"mysql",
"postgres",
"sequelize",
"sequelizejs",
"mapper"
],
"bin": {
"sequelize-automate": "bin/sequelize-automate"
},
"repository": {
"type": "git",
"url": "https://github.com/nodejh/sequelize-automate.git"
},
"bugs": {
"url": "https://github.com/nodejh/sequelize-automate/issues"
},
"nyc": {
"exclude": [
"**/test/**.js"
]
},
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "jest"
},
"engines": {
"node": ">=0.10"
},
"author": "nodejh <[email protected]>",
"license": "MIT",
"dependencies": {
"@babel/generator": "^7.7.4",
"@babel/parser": "^7.7.5",
"@babel/traverse": "^7.7.4",
"@babel/types": "^7.7.4",
"debug": "^4.1.1",
"fs-extra": "^8.1.0",
"lodash": "^4.17.15",
"sequelize": "^5.21.2",
"yargs": "^15.0.2"
},
"devDependencies": {
"eslint": "^6.7.2",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.19.1",
"jest": "^24.9.0",
"mariadb": "^2.1.4",
"mysql2": "^2.1.0",
"pg": "^7.15.1",
"pg-hstore": "^2.3.3",
"sqlite3": "^4.1.1",
"tedious": "^6.6.2"
}
}