-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
59 lines (59 loc) · 1.35 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
{
"name": "sequelize-json-schema",
"version": "2.1.1",
"description": "Use your Sequelize models in JSON Schemas or Swagger",
"keywords": [
"sequelize",
"json",
"json-schema",
"swagger"
],
"engines": {
"node": ">= 8"
},
"peerDependencies": {
"sequelize": ">= 4"
},
"main": "src/index.js",
"scripts": {
"md": "runmd --watch --output README.md README_js.md",
"prepare": "runmd --output README.md README_js.md",
"pretest": "eslint .",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chaliy/sequelize-json-schema.git"
},
"author": {
"name": "Robert Kieffer",
"email": "[email protected]",
"url": "https://www.github.com/broofa"
},
"contributors": [
{
"name": "Mike Chaliy",
"email": "[email protected]",
"url": "https://github.com/chaliy"
},
{
"name": "Robert Kieffer",
"email": "[email protected]",
"url": "https://www.github.com/broofa"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/chaliy/sequelize-json-schema/issues"
},
"homepage": "https://github.com/chaliy/sequelize-json-schema#readme",
"devDependencies": {
"ajv": "6.10.2",
"eslint": "6.8.0",
"mocha": "6.2.2",
"runmd": "1.2.1",
"sequelize": "5.21.3",
"sqlite3": "4.1.1"
},
"dependencies": {}
}