54 lines
1.2 KiB
JSON
54 lines
1.2 KiB
JSON
{
|
|
"name": "mammoth",
|
|
"version": "1.4.17",
|
|
"author": "Michael Williamson <mike@zwobble.org>",
|
|
"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": "~2.5.0",
|
|
"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"
|
|
}
|