-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 2.81 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 2.81 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "markdown-confluence-sync-action",
"description": "GitHub Action to sync markdown files to Confluence",
"version": "2.5.0",
"author": "Telefónica Innovación Digital",
"homepage": "https://github.com/Telefonica/markdown-confluence-sync-action",
"repository": {
"type": "git",
"url": "git+https://github.com/Telefonica/markdown-confluence-sync-action.git"
},
"bugs": {
"url": "https://github.com/Telefonica/markdown-confluence-sync-action/issues"
},
"keywords": [
"Confluence",
"markdown",
"Docusaurus",
"sync",
"page",
"pages",
"md",
"mdx",
"frontmatter",
"metadata",
"files",
"folder",
"directory",
"tree",
"sync",
"update",
"create",
"delete",
"github",
"action",
"attachments",
"images"
],
"exports": {
".": "./dist/main.js"
},
"type": "module",
"engines": {
"node": ">=21"
},
"packageManager": "pnpm@9.4.0",
"scripts": {
"check:types": "npm run check:types:code && npm run check:types:test",
"check:types:code": "tsc --noEmit",
"check:types:test": "tsc --noEmit --project ./test/tsconfig.json",
"cspell": "cspell . ./.github/**/*.md",
"lint": "eslint .",
"lint:staged": "lint-staged",
"build": "ncc build src/main.ts --transpile-only -o dist --source-map --license licenses.txt && node ./script/post-package.js",
"prepare": "husky",
"test:e2e": "jest --config jest.e2e.config.js",
"test:unit": "jest --config jest.unit.config.js"
},
"license": "Apache-2.0",
"devDependencies": {
"@actions/core": "1.11.1",
"@eslint/js": "9.13.0",
"@eslint/json": "0.6.0",
"@eslint/markdown": "6.2.1",
"@github/local-action": "2.2.0",
"@telefonica/markdown-confluence-sync": "2.3.0",
"@telefonica/confluence-sync": "2.2.0",
"@types/jest": "29.5.14",
"@types/node": "22.9.0",
"@typescript-eslint/eslint-plugin": "8.14.0",
"@typescript-eslint/parser": "8.14.0",
"@vercel/ncc": "0.38.3",
"confluence.js": "2.1.0",
"cspell": "8.15.5",
"dompurify": "3.2.4",
"dotenv": "16.4.5",
"eslint": "9.7.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.6.3",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jest": "28.9.0",
"eslint-plugin-prettier": "5.1.3",
"globals": "16.0.0",
"husky": "9.0.11",
"jest": "29.7.0",
"lint-staged": "15.2.10",
"replace-in-file": "8.2.0",
"ts-jest": "29.2.5",
"typescript": "5.6.3",
"yaml": "2.6.1"
},
"files": [
"dist",
"bin"
],
"bin": {
"markdown-confluence-sync-action": "./bin/markdown-confluence-sync-action.js"
},
"lint-staged": {
"*.js": "eslint",
"*.mjs": "eslint",
"*.cjs": "eslint",
"*.json": "eslint",
"*.md": "eslint",
"*.*": "cspell --no-must-find-files"
}
}