forked from mwilliamson/mammoth.js
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
56 lines (56 loc) · 1.33 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
{
"name": "mammoth-styled",
"version": "1.0.0",
"author": "Zhenjiang Shao <[email protected]>, Michael Williamson <[email protected]>",
"description": "Convert Word documents from docx to simple HTML and Markdown with style",
"keywords": [
"docx",
"html",
"office",
"word",
"markdown",
"md",
"style"
],
"main": "./lib/index.js",
"repository": {
"type": "https",
"url": "https://github.com/shaozj/mammoth-styled"
},
"dependencies": {
"argparse": "~1.0.3",
"bluebird": "~3.4.0",
"dingbat-to-unicode": "^1.0.1",
"jszip": "~2.5.0",
"lodash.clonedeep": "^4.5.0",
"lop": "~0.4.0",
"path-is-absolute": "^1.0.0",
"sax": "~1.1.1",
"underscore": "~1.8.3",
"xmlbuilder": "^10.0.0"
},
"devDependencies": {
"browserify": "~13.0.1",
"browserify-prepend-licenses": "~1.0.0",
"duck": "~0.1.11",
"eslint": "^7.19.0",
"eslint-config-egg": "^9.0.0",
"hamjest": "2.13.0",
"mocha": "^8.2.1",
"temp": "^0.9.4",
"uglify-js": "~2.4.8"
},
"browser": {
"./lib/unzip.js": "./browser/unzip.js",
"./lib/docx/files.js": "./browser/docx/files.js"
},
"bin": {
"mammoth": "bin/mammoth"
},
"scripts": {
"eslint": "eslint ./ --fix",
"test": "mocha 'test/**/*.tests.js'",
"test-only": "mocha"
},
"license": "BSD-2-Clause"
}