forked from sequelize/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 2.78 KB
/
package.json
File metadata and controls
127 lines (127 loc) · 2.78 KB
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "sequelize-cli",
"version": "6.6.3",
"description": "The Sequelize CLI",
"types": "./types.d.ts",
"bin": {
"sequelize": "./lib/sequelize",
"sequelize-cli": "./lib/sequelize"
},
"files": [
"lib",
"types.d.ts"
],
"dependencies": {
"fs-extra": "^9.1.0",
"js-beautify": "1.15.4",
"lodash": "^4.17.21",
"picocolors": "^1.1.1",
"resolve": "^1.22.1",
"umzug": "^2.3.0",
"yargs": "^16.2.0"
},
"devDependencies": {
"@babel/cli": "7.27.1",
"@babel/core": "7.27.1",
"@babel/preset-env": "7.27.1",
"@babel/register": "7.27.1",
"@commitlint/cli": "20.1.0",
"@commitlint/config-angular": "20.0.0",
"bluebird": "3.7.2",
"eslint": "7.32.0",
"eslint-config-prettier": "10.1.2",
"eslint-plugin-prettier": "4.2.1",
"expect.js": "0.3.1",
"gulp": "4.0.2",
"husky": "8.0.3",
"lint-staged": "15.5.1",
"mocha": "9.2.2",
"mysql2": "3.2.0",
"pg": "latest",
"pg-hstore": "latest",
"prettier": "2.8.8",
"semver": "7.7.1",
"sequelize": "6.37.7",
"sqlite3": "latest",
"through2": "4.0.2"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": true,
"singleQuote": true
},
"scripts": {
"build": "npm run build-clean && babel src -d lib && npm run build-bin && npm run build-assets",
"build-bin": "mv ./lib/sequelize.js ./lib/sequelize && chmod +x ./lib/sequelize",
"build-assets": "cp -R ./src/assets ./lib/",
"build-clean": "rm -rf ./lib/",
"lint": "eslint test src",
"pretty": "prettier src test --write",
"prepare": "husky install && npm run build",
"test-raw": "mocha 'test/**/*.test.js'",
"test": "npm run lint && npm run build && npm run test-raw"
},
"repository": {
"type": "git",
"url": "git://github.com/sequelize/cli.git"
},
"keywords": [
"sequelize",
"cli"
],
"contributors": [
{
"name": "Sascha Depold",
"email": "sascha@depold.com"
},
{
"name": "Paulo R Lopes",
"email": "prplopes@gmail.com"
},
{
"name": "Sushant Dhiman",
"email": "sushantdhiman@outlook.com"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/sequelize/cli/issues"
},
"homepage": "https://github.com/sequelize/cli",
"engines": {
"node": ">=10.0.0"
},
"commitlint": {
"extends": [
"@commitlint/config-angular"
],
"rules": {
"type-enum": [
2,
"always",
[
"build",
"ci",
"docs",
"feat",
"fix",
"perf",
"refactor",
"revert",
"style",
"test",
"meta"
]
]
}
},
"lint-staged": {
"*.js": "eslint"
},
"release": {
"branches": [
"main"
]
}
}