-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.03 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
{
"name": "traefik-allow-countries",
"version": "0.0.0",
"description": "A traefik plugin to allow only certain countries and block everything else.",
"author": {
"name": "Jonas Schubert",
"url": "https://github.com/JonasSchubert/",
"email": "jonas.schubert.projects@web.de"
},
"contributors": [],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/JonasSchubert/traefik-allow-countries.git"
},
"scripts": {
"build:prod": "go build",
"lint": "golangci-lint run -v",
"prepare": "is-ci || husky",
"pre-push": "npm run test:unit && npm run build:prod",
"test:unit": "go test -v -cover"
},
"devDependencies": {
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"commitlint-presets": "^2.0.1",
"husky": "^9.1.7",
"is-ci": "^4.1.0"
},
"engines": {
"node": ">=22.12.0",
"npm": ">=10.9.1",
"vscode": "^1.96.2"
},
"commitlint": {
"extends": [
"./node_modules/commitlint-presets/index.js"
]
}
}