-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 1.87 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 1.87 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
79
80
81
82
83
84
{
"name": "fastify-knexjs",
"version": "1.2.0",
"description": "Fastify KnexJS Plugin",
"keywords": [
"Fastify",
"KnexJS",
"Plugin",
"Test"
],
"homepage": "https://github.com/nbalduzzi/fastify-knexjs#readme",
"bugs": {
"url": "https://github.com/nbalduzzi/fastify-knexjs/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nbalduzzi/fastify-knexjs.git"
},
"license": "MIT",
"author": "Nicolas Balduzzi",
"contributors": [
"Patrick Heneise (https://github.com/PatrickHeneise)"
],
"main": "index.js",
"scripts": {
"lint": "eslint . --ext js",
"test": "eslint ./ && tap test.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{js,json,md}": [
"prettier --write"
],
"*.{js}": [
"eslint --cache --fix"
]
},
"dependencies": {
"fastify-plugin": "^3.0.0",
"knex": "^0.95.6"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/github": "^7.2.3",
"@semantic-release/release-notes-generator": "^9.0.2",
"eslint": "^7.26.0",
"fastify": "^3.15.1",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"mysql": "^2.18.1",
"prettier": "^2.3.0",
"tap": "^15.0.9"
},
"release": {
"branches": [
"master"
]
},
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/github",
{
"assets": [
"package.json"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
}