-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 928 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 928 Bytes
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
{
"name": "gem-server",
"version": "1.1.0",
"description": "A simple zero-configuration command-line gemini server",
"scripts": {
"start": "node ./bin/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ptrmsk/gem-server.git"
},
"keywords": [
"cli",
"command",
"static",
"gemini",
"gem",
"gemfile",
"gem-server",
"gemini-server",
"server"
],
"author": "ptrmsk",
"license": "ISC",
"engines": {
"node": ">=12.16"
},
"bugs": {
"url": "https://github.com/ptrmsk/gem-server/issues"
},
"homepage": "https://github.com/ptrmsk/gem-server#readme",
"dependencies": {
"argparse": "^2.0.1",
"gemini-server": "git+https://github.com/ptrmsk/gemini-server.git",
"tsc": "^2.0.4"
},
"preferGlobal": true,
"bin": {
"gem-server": "./bin/index.js"
}
}