-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.56 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.56 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
{
"name": "@adobe/helix-markdown-support",
"version": "7.1.24",
"description": "Helix Markdown Support",
"type": "module",
"scripts": {
"test": "c8 mocha",
"lint": "eslint .",
"semantic-release-dry": "semantic-release --dry-run --branches $CI_BRANCH",
"semantic-release": "semantic-release",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "https://github.com/adobe/helix-markdown-support.git"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/adobe/helix-markdown-support/issues"
},
"homepage": "https://github.com/adobe/helix-markdown-support#readme",
"main": "src/index.js",
"exports": {
".": "./src/index.js",
"./matter": "./src/matter/index.js"
},
"dependencies": {
"hast-util-to-html": "9.0.5",
"js-yaml": "5.2.2",
"mdast-util-gfm-footnote": "2.1.0",
"mdast-util-gfm-strikethrough": "2.0.0",
"mdast-util-gfm-table": "2.0.0",
"mdast-util-gfm-task-list-item": "2.0.0",
"mdast-util-phrasing": "4.1.0",
"mdast-util-to-hast": "13.2.1",
"micromark-extension-gfm-footnote": "2.1.0",
"micromark-extension-gfm-strikethrough": "2.1.0",
"micromark-extension-gfm-table": "2.1.1",
"micromark-extension-gfm-tagfilter": "2.0.0",
"micromark-extension-gfm-task-list-item": "2.1.0",
"micromark-util-character": "2.1.1",
"micromark-util-combine-extensions": "2.0.1",
"micromark-util-symbol": "2.0.1",
"unist-util-find": "3.0.0",
"unist-util-visit": "5.1.0"
},
"mocha": {
"spec": "test/**/*.test.js",
"recursive": "true",
"reporter": "mocha-multi-reporters",
"reporter-options": "configFile=.mocha-multi.json",
"node-option": "conditions=development"
},
"peerDependencies": {
"unified": "11.x"
},
"engines": {
"node": ">=14"
},
"devDependencies": {
"@adobe/eslint-config-helix": "3.0.30",
"@adobe/remark-gridtables": "3.0.20",
"@eslint/config-helpers": "0.7.0",
"@semantic-release/changelog": "7.0.0",
"@semantic-release/git": "11.0.1",
"c8": "12.0.0",
"eslint": "9.4.0",
"husky": "9.1.7",
"junit-report-builder": "5.1.2",
"lint-staged": "17.2.0",
"mdast-builder": "1.1.1",
"mocha": "11.7.6",
"mocha-multi-reporters": "1.5.1",
"rehype-format": "5.0.1",
"rehype-stringify": "10.0.1",
"remark-gfm": "4.0.1",
"remark-parse": "11.0.0",
"remark-rehype": "11.1.2",
"remark-stringify": "11.0.0",
"semantic-release": "25.0.8",
"unified": "11.0.5",
"unist-util-inspect": "8.1.0"
},
"lint-staged": {
"*.js": "eslint"
}
}