forked from mvoorberg/sequelize-auto-v2
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.74 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
62
63
64
65
66
67
{
"name": "sequelize-auto-v3",
"version": "0.6.1",
"description": "Generate bare sequelize models from your database.",
"main": "index",
"keywords": [
"mysql",
"postgres",
"sequelize",
"sequelizejs",
"mapper"
],
"bin": {
"sequelize-auto": "bin/sequelize-auto"
},
"repository": {
"type": "git",
"url": "https://github.com/naren7229/sequelize-auto-v3.git"
},
"bugs": {
"url": "https://github.com/naren7229/sequelize-auto-v3/issues"
},
"nyc": {
"exclude": [
"**/test/*"
]
},
"scripts": {
"test": "cross-env DEBUG='sequelize-auto:*' nyc mocha",
"test-postgres": "cross-env DEBUG='sequelize-auto:*' DIALECT=postgres nyc mocha",
"test-postgres-native": "cross-env DEBUG='sequelize-auto:*' DIALECT=postgres-native nyc mocha",
"test-mysql": "cross-env DEBUG='sequelize-auto:*' DIALECT=mysql nyc mocha",
"test-sqlite": "cross-env DEBUG='sequelize-auto:*' DIALECT=sqlite nyc mocha",
"test-mssql": "cross-env DEBUG='sequelize-auto:*' DIALECT=mssql nyc mocha",
"deploy": "np",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"engines": {
"node": ">= 8"
},
"license": "MIT",
"dependencies": {
"async": "^3.1.0",
"debug": "^4.1.1",
"eslint": "^6.5.1",
"graceful-fs-extra": "^2.0.0",
"mkdirp": "^0.5.1",
"sequelize": "^5.19.2",
"yargs": "^14.0.0"
},
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.6",
"cross-env": "^6.0.3",
"dotenv": "^8.1.0",
"istanbul": "^0.4.5",
"lcov-result-merger": "^3.1.0",
"mocha": "^6.2.1",
"mysql2": "^1.7.0",
"np": "^5.1.0",
"nyc": "^14.1.1",
"pg": "^7.12.1",
"pg-hstore": "^2.3.3",
"sqlite3": "^4.1.0",
"tedious": "^6.4.0"
}
}