-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
95 lines (95 loc) · 2.13 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
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "fastify-slonik",
"version": "2.0.0",
"description": "Fastify Slonik Plugin",
"keywords": [
"fastify",
"fastify-plugin",
"pg",
"postgres",
"slonik",
"postgresql",
"database",
"connection",
"sql"
],
"homepage": "https://github.com/spa5k/fastify-slonik",
"repository": {
"type": "git",
"url": "https://github.com/spa5k/fastify-slonik"
},
"license": "MIT",
"author": "spa5k",
"sideEffects": false,
"main": "dist/index.js",
"module": "dist/index.mjs",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": " tsup-node",
"build:dev": "tsup-node",
"format": "prettier --write .",
"lint": "eslint src --ext .ts",
"test": "pnpm build && tap -j1 -R classic dist/test/index.test.js"
},
"husky": {
"hooks": {
"pre-commit": "pnpm lint",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"tap": {
"check-coverage": false
},
"dependencies": {
"fastify-plugin": "4.2.1"
},
"devDependencies": {
"@commitlint/cli": "17.1.2",
"@commitlint/config-conventional": "17.1.0",
"@semantic-release/changelog": "6.0.1",
"@semantic-release/commit-analyzer": "9.0.2",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "8.0.6",
"@semantic-release/npm": "9.0.1",
"@semantic-release/release-notes-generator": "10.0.3",
"@types/node": "18.7.23",
"@types/tap": "15.0.7",
"dotenv": "16.0.3",
"eslint": "8.24.0",
"eslint-config-galex": "4.2.2",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"fastify": "4.7.0",
"husky": "8.0.1",
"prettier": "2.7.1",
"semantic-release": "19.0.5",
"slonik": "31.2.4",
"tap": "16.3.0",
"tslib": "2.4.0",
"tsup": "6.2.3",
"typescript": "4.8.4"
},
"peerDependencies": {
"fastify": ">=4.x",
"slonik": ">=28.x"
},
"peerDependenciesMeta": {
"fastify": {
"optional": false
},
"slonik": {
"optional": false
}
},
"engines": {
"node": ">=14"
}
}