-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.38 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.38 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
{
"name": "@teipublisher/jinks-cli",
"version": "2.0.2",
"description": "A command-line interface tool for managing TEI Publisher applications with Jinks",
"main": "index.js",
"type": "module",
"bin": {
"jinks": "index.js"
},
"scripts": {
"start": "node index.js",
"test": "node --test",
"semantic-release": "semantic-release"
},
"keywords": [
"tei-publisher",
"jinks",
"cli",
"exist-db",
"xml",
"tei"
],
"author": "Wolfgang Meier",
"license": "GPL-3.0-or-later",
"repository": {
"type": "git",
"url": "git+https://github.com/eeditiones/jinks-cli.git"
},
"bugs": {
"url": "https://github.com/eeditiones/jinks-cli/issues"
},
"homepage": "https://github.com/eeditiones/jinks-cli#readme",
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@inquirer/prompts": "^8.1.0",
"axios": "^1.13.2",
"axios-cookiejar-support": "^6.0.5",
"chalk": "^5.6.2",
"cli-table3": "^0.6.5",
"commander": "^14.0.2",
"dotenv": "^17.2.3",
"figlet": "^1.9.4",
"ora": "^9.0.0",
"terminal-link": "^5.0.0",
"tough-cookie": "^6.0.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.0",
"semantic-release": "^25.0.2"
},
"files": [
"index.js",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
}
}