-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
81 lines (81 loc) · 2.38 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
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
{
"name": "@adobe/helix-md2jcr",
"version": "0.0.1",
"description": "Helix Service that converts markdown to JCR content structure",
"main": "src/index.js",
"type": "module",
"scripts": {
"test": "c8 mocha 'test/*.tests.js'",
"lint": "eslint .",
"semantic-release": "semantic-release",
"semantic-release-dry": "semantic-release --dry-run --branches $CI_BRANCH",
"prepare": "husky install"
},
"mocha": {
"spec": "test/*.test.js",
"require": "test/setup-env.js",
"reporter": "mocha-multi-reporters",
"reporter-options": "configFile=.mocha-multi.json"
},
"repository": {
"type": "git",
"url": "https://github.com/adobe/helix-md2jcr.git"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/adobe/helix-md2jcr/issues"
},
"homepage": "https://github.com/adobe/helix-md2jcr#readme",
"dependencies": {
"@adobe/fetch": "4.1.11",
"@adobe/helix-docx2md": "1.6.12",
"@adobe/helix-markdown-support": "7.1.9",
"@adobe/helix-shared-process-queue": "3.0.4",
"@adobe/remark-gridtables": "3.0.8",
"docx": "8.5.0",
"entities": "^5.0.0",
"github-slugger": "2.0.0",
"handlebars": "^4.7.8",
"hast-util-is-element": "3.0.0",
"hast-util-to-html": "^9.0.3",
"hast-util-to-mdast": "10.1.1",
"image-size": "1.2.0",
"mdast-util-to-hast": "^13.2.0",
"mdast-util-to-string": "^4.0.0",
"mime": "4.0.6",
"rehype-parse": "9.0.1",
"remark-gfm": "4.0.0",
"remark-parse": "11.0.0",
"unified": "11.0.5",
"unist-util-find": "^3.0.0",
"unist-util-select": "^5.1.0",
"unist-util-visit": "5.0.0",
"xml-formatter": "^3.6.3"
},
"devDependencies": {
"@adobe/eslint-config-helix": "2.0.8",
"@adobe/helix-mediahandler": "2.5.43",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/exec": "6.0.3",
"@semantic-release/git": "10.0.1",
"c8": "10.1.3",
"dotenv": "16.4.7",
"eslint": "8.57.1",
"eslint-import-resolver-exports": "1.0.0-beta.5",
"eslint-plugin-header": "3.1.1",
"eslint-plugin-import": "2.31.0",
"husky": "9.1.7",
"junit-report-builder": "5.1.1",
"lint-staged": "15.3.0",
"mocha": "10.8.2",
"mocha-multi-reporters": "1.5.1",
"nock": "13.5.6",
"semantic-release": "24.2.0",
"unist-util-inspect": "8.1.0",
"yauzl": "3.2.0"
},
"lint-staged": {
"*.js": "eslint"
}
}