-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
53 lines (53 loc) · 1.19 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
53
{
"name": "antora-confluence",
"description": "A tool to convert and publish Antora documentation to Confluence",
"keywords": [
"antora-confluence",
"captain",
"antora",
"confluence",
"documentation",
"publishing",
"docs-as-code",
"asciidoc",
"publishToConfluence"
],
"version": "0.4.0",
"main": "dist/index.js",
"files": [
"dist"
],
"license": "Apache-2.0",
"private": false,
"author": {
"name": "Pascal Euhus",
"url": "https://pascal.euhus.dev"
},
"scripts": {
"start": "ts-node index.ts",
"build": "tsc",
"test": "jest",
"lint": "eslint . --ext .ts",
"format": "prettier --check ."
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/node": "^22.0.0",
"@types/vinyl": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.2.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"form-data": "^4.0.0",
"minimatch": "^9.0.3",
"node-fetch": "^3.3.2",
"node-html-parser": "^6.1.12",
"winston": "^3.11.0"
}
}