-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.09 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.09 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
{
"name": "@adobe/helix-html2md",
"version": "2.2.3",
"description": "Helix html2md library",
"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": "git+https://github.com/adobe/helix-html2md-lib.git"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/adobe/helix-html2md-lib/issues"
},
"homepage": "https://github.com/adobe/helix-html2md-lib#readme",
"main": "src/index.js",
"exports": {
".": "./src/index.js"
},
"mocha": {
"spec": "test/**/*.test.js",
"recursive": "true",
"reporter": "mocha-multi-reporters",
"reporter-options": "configFile=.mocha-multi.json",
"require": [
"test/setup-env.js",
"mocha-suppress-logs"
]
},
"dependencies": {
"@adobe/helix-markdown-support": "^7.1.16",
"@adobe/helix-mediahandler": "^3.0.0",
"@adobe/helix-shared-process-queue": "^3.1.3",
"@adobe/micromark-extension-gridtables": "^2.0.4",
"@adobe/remark-gridtables": "^3.0.15",
"hast-util-select": "^6.0.4",
"hast-util-to-mdast": "^10.1.2",
"hast-util-to-string": "^3.0.1",
"rehype-parse": "^9.0.1",
"remark-gfm": "^4.0.1",
"remark-stringify": "^11.0.0",
"unified": "^11.0.5",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@adobe/eslint-config-helix": "3.0.30",
"@adobe/fetch": "4.3.1",
"@adobe/helix-html-pipeline": "^6.0.0",
"@eslint/config-helpers": "0.7.0",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/exec": "7.1.0",
"@semantic-release/git": "10.0.1",
"c8": "11.0.0",
"dotenv": "17.4.2",
"eslint": "9.4.0",
"husky": "9.1.7",
"junit-report-builder": "5.1.2",
"lint-staged": "17.2.0",
"mocha": "11.7.6",
"mocha-multi-reporters": "1.5.1",
"mocha-suppress-logs": "0.6.0",
"nock": "14.0.16",
"semantic-release": "25.0.8"
},
"lint-staged": {
"*.js": "eslint"
}
}