This repository has been archived by the owner on Feb 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
52 lines (52 loc) · 1.46 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
{
"name": "sequelize-connect",
"version": "2.1.2",
"author": "Jacob Spizziri <[email protected]> (https://github.com/jspizziri)",
"license": "BSD-2-Clause",
"description": "A simple connection wrapper for the sequelize ORM, making it easier to configure and build models & connections.",
"homepage": "https://github.com/jspizziri/sequelize-singleton",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/jspizziri/sequelize-connect.git"
},
"files": [
"dist"
],
"scripts": {
"prepublish": "npm run build",
"version": "npm run changelog && git add CHANGELOG.md",
"postversion": "git push && git push --tags",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"clean": "rm -rf ./dist",
"build": "npm run clean && babel src --out-dir dist/src --source-maps && babel index.js --out-dir dist --source-maps",
"commit": "git-cz"
},
"keywords": [
"sequelize",
"singleton",
"connect",
"connection",
"mysql",
"postgres",
"sqlite"
],
"dependencies": {
"bluebird": "^2.10.2",
"lodash.flatten": "^4.4.0"
},
"peerDependencies": {
"sequelize": ">=4.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"conventional-changelog-cli": "^2.0.1",
"cz-conventional-changelog": "^2.1.0"
}
}