-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
67 lines (67 loc) · 1.87 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": "sequelizr",
"version": "3.0.85",
"description": "Manage Sequelize models",
"main": "./src/index.js",
"scripts": {
"test": "npm run test:unit && npm run test:integration",
"test:unit": "jest --verbose unit",
"test:cover": "jest --coverage unit",
"test:integration": "jest --verbose --runInBand integration",
"test:mysql": "cross-env DIALECT=mysql npm run test:integration",
"test:mssql": "cross-env DIALECT=mssql npm run test:integration",
"test:all-dialects": "npm run test:mysql && npm run test:mssql",
"lint": "eslint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UziTech/sequelizr.git"
},
"bin": "./bin/sequelizr.js",
"keywords": [
"sequelize",
"model",
"models",
"sync",
"create",
"download",
"upload"
],
"author": "Tony Brix",
"license": "MIT",
"bugs": {
"url": "https://github.com/UziTech/sequelizr/issues"
},
"homepage": "https://github.com/UziTech/sequelizr#readme",
"dependencies": {
"sequelize": "^6.37.5",
"yargs": "^17.7.2"
},
"devDependencies": {
"@eslint/js": "^9.20.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.1",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.3",
"cross-env": "^7.0.3",
"eslint": "^9.20.1",
"globals": "^15.15.0",
"jest-cli": "^29.7.0",
"mysql2": "3.12.0",
"semantic-release": "^24.2.2",
"tedious": "^19.0.0",
"tmp-promise": "^3.0.3"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/github",
"@semantic-release/git"
]
}
}