forked from sequelize/sequelize-auto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.57 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "sequelize-auto",
"version": "0.8.7",
"publishConfig": {
"tag": "latest"
},
"description": "Automatically generate bare sequelize models from your database.",
"main": "index.js",
"types": "types",
"keywords": [
"mysql",
"mssql",
"sqlite",
"postgres",
"sequelize",
"sequelizejs",
"generator",
"mapper",
"typescript"
],
"files": [
"*.js",
"lib/**/*.js",
"types/**/*.ts",
"*.md"
],
"bin": {
"sequelize-auto": "bin/sequelize-auto"
},
"repository": {
"type": "git",
"url": "https://github.com/sequelize/sequelize-auto.git"
},
"bugs": {
"url": "https://github.com/sequelize/sequelize-auto/issues"
},
"nyc": {
"exclude": [
"**/test/*"
]
},
"scripts": {
"tsc": "tsc",
"clean": "rimraf lib && rimraf types && rimraf **/models && rimraf *.tgz",
"build": "npm run clean && tsc",
"prepack": "crlf --set=LF bin/sequelize-auto",
"test": "npm run test-mssql && npm run test-mysql && npm run test-postgres && npm run test-sqlite",
"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",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"engines": {
"node": ">= 10"
},
"author": "Steve Schmitt (https://github.com/steveschmitt)",
"contributors": [
"Daniel Durante <[email protected]>",
"Yuping Zuo (https://github.com/zypA13510)"
],
"license": "MIT",
"dependencies": {
"lodash": "^4.17.21",
"mkdirp": "^1.0.4",
"reserved-words": "^0.1.2",
"yargs": "^16.2.0"
},
"peerDependencies": {
"sequelize": ">3.30.0"
},
"devDependencies": {
"@types/chai": "^4.2.17",
"@types/lodash": "^4.14.168",
"@types/mocha": "^8.2.2",
"@types/reserved-words": "0.1.0",
"chai": "^4.3.4",
"coveralls": "^3.1.0",
"crlf": "^1.1.1",
"cross-env": "^7.0.3",
"debug": "^4.3.1",
"dotenv": "^8.2.0",
"eslint": "^7.23.0",
"lcov-result-merger": "^3.1.0",
"mocha": "^8.3.2",
"mysql": "^2.18.1",
"mysql2": "^2.2.5",
"nyc": "^15.1.0",
"pg": "^8.5.1",
"pg-hstore": "^2.3.3",
"rimraf": "^3.0.2",
"sequelize": "^6.11",
"sqlite3": "5.0.2",
"tedious": "^11.0.6",
"typescript": "^4.2.3"
}
}