forked from eclass/sequelize-paginate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
130 lines (130 loc) · 3.23 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
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
128
129
130
{
"name": "sequelize-paginate",
"version": "1.1.4",
"description": "Sequelize model plugin for add paginate method",
"main": "src",
"scripts": {
"lint": "eslint --fix .",
"format": "prettier-standard '{src,test}/**/*.js'",
"test": "nyc mocha test --exit --no-timeouts",
"commit": "commit",
"travis-deploy-once": "travis-deploy-once",
"semantic-release": "semantic-release"
},
"engines": {
"node": ">=8"
},
"repository": {
"type": "git",
"url": "https://github.com/eclass/sequelize-paginate.git"
},
"keywords": [
"sequelize",
"paginate"
],
"author": "Leonardo Gatica <lgatica@protonmail.com> (https://about.me/lgatica)",
"license": "MIT",
"bugs": {
"url": "https://github.com/eclass/sequelize-paginate/issues"
},
"homepage": "https://github.com/eclass/sequelize-paginate#readme",
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "7.2.1",
"@commitlint/config-conventional": "7.1.2",
"@commitlint/prompt-cli": "7.2.1",
"@semantic-release/changelog": "3.0.1",
"@semantic-release/git": "7.0.5",
"@semantic-release/github": "5.2.5",
"@semantic-release/npm": "5.1.1",
"chai": "4.2.0",
"eslint": "5.9.0",
"eslint-config-jsdoc-strict": "1.0.0",
"eslint-config-standard": "12.0.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-jsdoc": "3.9.1",
"eslint-plugin-node": "8.0.0",
"eslint-plugin-promise": "4.0.1",
"eslint-plugin-security": "1.4.0",
"eslint-plugin-standard": "4.0.0",
"husky": "1.2.0",
"lint-staged": "8.1.0",
"lodash.range": "3.2.0",
"mocha": "5.2.0",
"mysql2": "1.6.4",
"npm-github-config": "2.0.0",
"nyc": "13.1.0",
"nyc-config-common": "1.0.1",
"prettier-standard": "8.0.1",
"promise-sequential": "1.1.1",
"semantic-release": "15.12.3",
"sequelize": "4.41.2",
"travis-deploy-once": "5.0.7"
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"standard",
"jsdoc-strict",
"plugin:security/recommended"
],
"plugins": [
"promise",
"security"
],
"rules": {
"no-console": [
"error"
],
"require-await": [
"error"
],
"promise/always-return": "error",
"promise/no-return-wrap": "error",
"promise/param-names": "error",
"promise/catch-or-return": "error",
"promise/no-native": "off",
"promise/no-nesting": "warn",
"promise/no-promise-in-callback": "warn",
"promise/no-callback-in-promise": "warn",
"promise/no-new-statics": "error",
"promise/no-return-in-finally": "warn",
"promise/valid-params": "warn"
}
},
"eslintIgnore": [
"coverage"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"linters": {
"{src,test}/**/*.js": [
"eslint --fix",
"prettier-standard",
"git add"
]
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"renovate": {
"automerge": "minor",
"extends": [
":library"
]
},
"release": {
"extends": "npm-github-config"
},
"nyc": {
"extends": "nyc-config-common"
}
}