forked from adobe/helix-importer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.6 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
{
"name": "@adobe/helix-importer",
"version": "2.0.0",
"description": "Helix Importer tool: create md / docx from html",
"main": "src/index.js",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/adobe/helix-importer.git"
},
"scripts": {
"lint": "eslint .",
"test": "c8 mocha",
"test-ci": "c8 mocha",
"semantic-release": "semantic-release",
"prepare": "npx husky install"
},
"mocha": {
"recursive": "true",
"spec": "test/**/*.spec.js",
"reporter": "mocha-multi-reporters",
"reporter-options": "configFile=.mocha-multi.json"
},
"lint-staged": {
"*.js": "eslint"
},
"devDependencies": {
"@adobe/eslint-config-helix": "1.3.2",
"@adobe/helix-docx2md": "1.1.1",
"@adobe/helix-mediahandler": "1.2.4",
"@semantic-release/changelog": "6.0.1",
"@semantic-release/exec": "6.0.3",
"@semantic-release/git": "10.0.1",
"c8": "7.12.0",
"dirname-filename-esm": "1.1.1",
"eslint": "8.7.0",
"eslint-plugin-header": "3.1.1",
"eslint-plugin-import": "2.25.4",
"husky": "8.0.1",
"lint-staged": "13.0.3",
"mocha": "10.0.0",
"mocha-multi-reporters": "1.5.1",
"mock-fs": "5.1.4",
"semantic-release": "19.0.5"
},
"license": "Apache-2.0",
"dependencies": {
"@adobe/helix-md2docx": "2.0.1",
"form-data": "4.0.0",
"fs-extra": "10.1.0",
"hast-util-to-html": "8.0.3",
"hast-util-to-mdast": "8.4.1",
"jsdom": "20.0.0",
"node-fetch": "3.2.10",
"rehype-parse": "8.0.4",
"rehype-remark": "9.1.2",
"remark-stringify": "10.0.2",
"unified": "10.1.2"
}
}