-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
42 lines (42 loc) · 1.02 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
{
"name": "hapi-sequelize-restify",
"version": "0.2.0",
"description": "Hapi plugin to REST API with sequelize ORM",
"main": "index.js",
"scripts": {
"lint": "eslint ./**/*.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DharanBro/hapi-sequelize-restify.git"
},
"keywords": [
"hapi",
"rest",
"sequelize",
"orm"
],
"author": "Giridharan",
"license": "MIT",
"bugs": {
"url": "https://github.com/DharanBro/hapi-sequelize-restify/issues"
},
"homepage": "https://github.com/DharanBro/hapi-sequelize-restify#readme",
"dependencies": {
"@hapi/boom": "^10.0.0",
"deepmerge": "^4.0.0",
"hapi-auth-jwt2": "^10.2.0",
"jsonwebtoken": "^8.5.1"
},
"devDependencies": {
"eslint": "^6.4.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"sequelize-cli": "^6.5.2"
},
"peerDependencies": {
"@hapi/hapi": "^21.1.0",
"sequelize": "^6.28.0"
}
}