-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
39 lines (39 loc) · 967 Bytes
/
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
{
"name": "sequelize-auto-import",
"version": "1.1.1",
"description": "Import sequelize models automagically",
"main": "src/index.js",
"files": [
"src"
],
"scripts": {
"lint": "eslint src test",
"test": "mocha"
},
"homepage": "https://github.com/bjrmatos/sequelize-auto-import#readme",
"bugs": "https://github.com/bjrmatos/sequelize-auto-import/issues",
"repository": {
"type": "git",
"url": "[email protected]:bjrmatos/sequelize-auto-import.git"
},
"keywords": [
"sequelize",
"import",
"sequelize models"
],
"author": "BJR Matos <[email protected]> (https://github.com/bjrmatos)",
"license": "MIT",
"devDependencies": {
"chai": "3.5.0",
"eslint": "2.10.2",
"eslint-config-airbnb-base": "3.0.1",
"eslint-plugin-import": "1.8.0",
"mocha": "2.4.5",
"mysql2": "2.1.0",
"sequelize": "5.21.5"
},
"dependencies": {
"object-assign": "4.1.0",
"snake-case": "1.1.2"
}
}