-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
53 lines (53 loc) · 1.31 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
{
"name": "fastify-objectionjs",
"version": "2.0.1",
"description": "fastify-objectionjs is a plugin for the Fastify framework that provides integration with objectionjs ORM",
"main": "plugin.js",
"types": "index.d.ts",
"engineStrict": false,
"engines": {
"node": "^14.x || >=16.x || >=18.x"
},
"scripts": {
"test": "tap test/*.test.js",
"test-ci": "tap --cov test/*.test.js --coverage-report=html",
"lint": "standard --verbose | snazzy",
"lint-ci": "standard"
},
"precommit": [
"lint",
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jarcodallo/fastify-objectionjs.git"
},
"keywords": [
"fastify",
"objectionjs",
"orm"
],
"author": "Jose Ramirez <jarcodallo@gmail.com>",
"license": "MIT",
"readmeFilename": "README.md",
"bugs": {
"url": "https://github.com/jarcodallo/fastify-objectionjs/issues"
},
"homepage": "https://github.com/jarcodallo/fastify-objectionjs#readme",
"devDependencies": {
"fastify": "^4.13.0",
"pre-commit": "^1.2.2",
"snazzy": "^9.0.0",
"better-sqlite3": "^8.1.0",
"standard": "^17.0.0",
"tap": "^16.3.4"
},
"dependencies": {
"fastify-plugin": "^4.5.0",
"knex": "^2.4.2",
"objection": "^3.0.1"
},
"peerDependencies": {
"better-sqlite3": "^8.0.0"
}
}