forked from mwilliamson/mammoth.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.23 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
{
"name": "mammoth",
"version": "1.4.17",
"author": "Michael Williamson <[email protected]>",
"description": "Convert Word documents from docx to simple HTML and Markdown",
"keywords": [
"docx",
"html",
"office",
"word",
"markdown",
"md"
],
"main": "./lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/mwilliamson/mammoth.js.git"
},
"dependencies": {
"argparse": "~1.0.3",
"bluebird": "~3.4.0",
"dingbat-to-unicode": "^1.0.1",
"jszip": "^3.7.1",
"lop": "^0.4.1",
"path-is-absolute": "^1.0.0",
"sax": "~1.1.1",
"underscore": "^1.13.1",
"xmlbuilder": "^10.0.0"
},
"devDependencies": {
"browserify": "~13.0.1",
"browserify-prepend-licenses": "~1.0.0",
"duck": "^0.1.12",
"eslint": "2.13.1",
"hamjest": "2.13.0",
"mocha": "~2.2.5",
"temp": "~0.7.0",
"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": {
"pretest": "eslint lib test",
"test": "mocha 'test/**/*.tests.js'",
"prepublish": "make mammoth.browser.min.js"
},
"license": "BSD-2-Clause"
}