-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
69 lines (69 loc) · 1.76 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
{
"name": "@packy-tang/md2docx",
"version": "1.0.3",
"description": "Markdown to docx command tool",
"main": "src/main.js",
"bin": "src/cli.js",
"scripts": {
"test": "mocha './tests/unit/*.spec.js'",
"test:coverage": "nyc mocha './tests/unit/*.spec.js'",
"release": "release-it",
"nvm": "sh bin/nvm.sh"
},
"files": [
"src"
],
"engines": {
"npm": ">=6.0.0",
"node": ">=14.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/lpreterite/md2docx"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"keywords": [
"md",
"docx",
"command"
],
"author": "packy-tang <[email protected]> (https://github.com/lpreterite)",
"license": "MIT",
"bugs": {
"url": "https://github.com/lpreterite/md2docx/issues"
},
"homepage": "https://github.com/lpreterite/md2docx#readme",
"dependencies": {
"adm-zip": "^0.5.10",
"chalk": "^5.2.0",
"commander": "^10.0.0",
"happy-dom": "^8.7.1",
"image-size": "^1.0.2",
"marked": "^4.2.12",
"mime-types": "^2.1.35"
},
"devDependencies": {
"@babel/cli": "^7.13.14",
"@babel/core": "^7.13.15",
"@babel/preset-env": "^7.13.15",
"@babel/register": "^7.13.14",
"@release-it/conventional-changelog": "^4.2.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@yelo/rollup-node-external": "^1.0.1",
"chai": "^4.2.0",
"core-js": "^3.28.0",
"cross-env": "^7.0.3",
"mocha": "^8.3.2",
"nyc": "^15.1.0",
"release-it": "^14.6.1",
"rollup": "^2.45.2",
"rollup-plugin-node-polyfills": "^0.2.1",
"rollup-plugin-terser": "^7.0.2"
}
}