This repository was archived by the owner on Dec 27, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.3 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.3 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
{
"name": "sequelize-autoload",
"version": "0.0.0-development",
"description": "Autoloader for SequelizeJS, inspired by PSR-0 and PSR-4.",
"main": "index.js",
"dependencies": {
"mysql2": "^1.5.2",
"object.pick": "^1.3.0",
"pg": "^7.4.1",
"pg-hstore": "^2.3.2",
"sequelize": "^4.34.0",
"sqlite3": "^3.1.13",
"tedious": "^2.3.1"
},
"devDependencies": {
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.1.0",
"semantic-release": "^12.4.1"
},
"scripts": {
"commit": "./node_modules/.bin/git-cz",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/boxsnake-nodejs/sequelize-autoload.git"
},
"keywords": [
"sequelize",
"database",
"autoload",
"autoloader",
"models",
"entities"
],
"author": "Alex Fang <deeno@qq.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/boxsnake-nodejs/sequelize-autoload/issues"
},
"homepage": "https://github.com/boxsnake-nodejs/sequelize-autoload#readme",
"engines": {
"node": ">=4.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"release": {
"verifyConditions": [
"@semantic-release/npm",
"@semantic-release/github"
]
}
}