forked from danecando/hapi-sequelize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.04 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
{
"name": "hapi-sequelize",
"version": "3.0.6",
"description": "A Hapi plugin for the fabulous Sequelize ORM",
"main": "lib/index.js",
"scripts": {
"test": "lab",
"test-cov-html": "lab -a code -r html -o coverage.html -r lcov -o lcov.info",
"coverage-report": "cat lcov.info | coveralls",
"lint": "eslint lib/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/danecando/hapi-sequelize.git"
},
"keywords": [
"sequelize",
"hapi",
"mysql",
"sqlite",
"postgresql",
"postgres",
"orm",
"plugin",
"database",
"node",
"javascript"
],
"author": "Dane Grant",
"license": "MIT",
"dependencies": {
"glob": "^7.0.3",
"joi": "^8.1.0"
},
"devDependencies": {
"code": "^4.0.0",
"coveralls": "^2.11.14",
"eslint": "^3.7.1",
"hapi": "^15.1.1",
"lab": "^11.1.0",
"mysql": "^2.10.2",
"sequelize": "^3.24.3",
"sinon": "^1.17.6"
},
"peerDependencies": {
"sequelize": "^3.x"
},
"engines": {
"node": ">=4.0.0"
}
}