-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.15 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
{
"name": "gina-sequelize",
"main": "./dist/gina.js",
"bin": {
"gina-cli": "./bin/index.ts"
},
"types": "./dist/gina.d.ts",
"version": "0.0.15",
"description": "Gina is a tool to auto-generate and run migrations based on Sequelize ORM.",
"scripts": {
"eslint": "eslint .",
"eslint_fix": "eslint . --fix",
"build": "tsc",
"gina-cli": "ts-node --esm ./bin/index.ts"
},
"repository": {
"type": "git",
"url": "[email protected]:digital-divas/gina.git"
},
"keywords": [],
"author": "digital-divas",
"license": "GPL-3.0-only",
"dependencies": {
"moment": "^2.30.1",
"mysql2": "^3.6.0",
"sequelize": "^6.32.1",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"@types/node": "^18.0.0",
"@types/yargs": "^17.0.32",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"chai": "^4.3.6",
"dotenv": "^16.0.1",
"eslint": "^8.17.0",
"import": "^0.0.6",
"mocha": "^10.0.0",
"mocha-junit-reporter": "^2.0.2",
"nyc": "^15.1.0",
"ts-node": "^10.8.1",
"typescript": "^4.7.4"
}
}