1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- {
- "name": "mammoth",
- "version": "1.4.21",
- "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": "^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.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": {
- "pretest": "eslint lib test",
- "test": "mocha 'test/**/*.tests.js'",
- "prepublish": "make mammoth.browser.min.js"
- },
- "license": "BSD-2-Clause"
- }
|