-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.25 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.25 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "hapi-sequelizejs",
"version": "0.0.0-development",
"description": "hapi.js plugin for the Sequelize ORM",
"main": "lib/index.js",
"files": [
"lib/**/*"
],
"scripts": {
"test": "lab --leaks",
"test-cov-html": "lab --leaks -a @hapi/code -r html -o coverage.html",
"lint": "eslint lib/*.js",
"coveralls": "lab -r lcov | ./node_modules/.bin/coveralls",
"prettify": "prettier --print-width 100 --tab-width 4 --single-quote --trailing-comma all --write \"{{lib,test}/**/*.js,*.{js,md,json}}\"",
"semantic-release": "semantic-release"
},
"lint-staged": {
"{{lib,test}/**/*.js,*.{js,md,json}}": [
"prettier --print-width 100 --tab-width 4 --single-quote --trailing-comma all --write"
]
},
"repository": {
"type": "git",
"url": "https://github.com/valtlfelipe/hapi-sequelizejs.git"
},
"keywords": [
"sequelize",
"hapi",
"hapi-plugin",
"mysql",
"sqlite",
"postgresql",
"postgres",
"orm",
"plugin",
"database",
"nodejs",
"javascript"
],
"author": "Felipe Valtl de Mello <eu@felipe.im>",
"contributors": [
"Dane Grant",
"Felipe Valtl de Mello <eu@felipe.im> (https://github.com/valtlfelipe)",
"Jonas Pauthier <jonas.pauthier@gmail.com> (https://github.com/Nargonath)"
],
"license": "MIT",
"devDependencies": {
"@hapi/code": "^9.0.1",
"@hapi/hapi": "^21.0.0",
"@hapi/lab": "^25.0.1",
"coveralls": "^3.1.1",
"eslint": "^8.27.0",
"husky": "^8.0.2",
"lint-staged": "^13.0.3",
"mysql2": "^2.3.3",
"prettier": "^2.7.1",
"sequelize": "^6.25.5",
"sqlite3": "^5.1.2",
"semantic-release": "^19.0.5"
},
"peerDependencies": {
"sequelize": "5.x || 6.x",
"@hapi/hapi": "19.x || 20.x || 21.x"
},
"engines": {
"node": ">=12.0.0",
"npm": ">=5.6.0"
},
"dependencies": {
"@hapi/hoek": "10.0.1",
"glob": "8.0.3",
"joi": "^17.7.0"
},
"funding": {
"type": "individual",
"url": "https://www.buymeacoffee.com/valtlfelipe"
}
}