-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.11 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
{
"name": "@grundstein/grs",
"version": "0.0.5",
"author": "Wizards & Witches",
"homepage": "https://grundstein.it/grs",
"license": "AGPL-3.0",
"description": "NOT YET BENCHMARKED OR IN PRODUCTION! @grundstein/grs - grundstein redirect service. redirects http to https, serves .well-known for letsencrypt",
"main": "src/index.mjs",
"engines": {
"node": ">=14.14.0"
},
"engineStrict": true,
"scripts": {
"start": "npm run dev",
"test": "t",
"format": "f -w",
"dev": "src/bin.mjs"
},
"bin": {
"grundstein-redirect-service": "src/bin.mjs",
"grs": "src/bin.mjs"
},
"files": [
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/grundstein/grs.git"
},
"bugs": {
"url": "https://github.com/grundstein/grs/issues"
},
"dependencies": {
"@grundstein/commons": "0.0.10"
},
"devDependencies": {
"@magic/format": "0.0.41",
"@magic/test": "0.2.12"
},
"keywords": [
"grundstein",
"static",
"page",
"server"
],
"contributors": [
{
"name": "jascha ehrenreich",
"github": "jaeh"
}
]
}