-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 902 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
40
41
42
{
"name": "sequelize-joi",
"version": "1.0.5",
"description": "Joi schema validation for Sequelize models",
"homepage": "https://tallysticks.io",
"bugs": {
"url": "https://github.com/Tallysticks/sequelize-joi/issues"
},
"license": "MIT",
"author": {
"name": "Edward Ruchevits",
"email": "edward@tallysticks.io"
},
"contributors": [
{
"name": "Edward Ruchevits",
"email": "edward@tallysticks.io"
}
],
"main": "src",
"repository": {
"type": "git",
"url": "https://github.com/Tallysticks/sequelize-joi.git"
},
"scripts": {
"test": "node_modules/.bin/mocha test"
},
"dependencies": {
"debug": "^3.1.0",
"sequelize": "^4.11.1",
"joi": "^13.1.1"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"mocha": "^3.5.3",
"pg": "^7.3.0"
},
"engines": {
"node": "8.x.x"
}
}