-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.01 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.01 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
{
"name": "confluence-export",
"version": "1.0.0",
"description": "A Node.js library for downloading and serving Confluence pages as JSON content",
"main": "src/index.js",
"bin": {
"confluence-export": "./src/index.js"
},
"scripts": {
"start": "node src/index.js",
"dev": "node src/index.js --dev",
"test": "jest",
"lint": "eslint src/",
"format": "prettier --write src/"
},
"keywords": [
"confluence",
"export",
"api",
"documentation",
"json"
],
"author": "",
"license": "GPL-2.0",
"dependencies": {
"axios": "^1.6.0",
"dotenv": "^16.3.1",
"commander": "^11.1.0",
"ora": "^7.0.1",
"chalk": "^4.1.2",
"p-limit": "^5.0.0",
"retry": "^0.13.1",
"inquirer": "^9.2.0",
"turndown": "^7.1.2",
"cli-progress": "^3.12.0"
},
"devDependencies": {
"eslint": "^8.54.0",
"prettier": "^3.1.0",
"jest": "^29.7.0"
},
"engines": {
"node": ">=18.0.0"
}
}