forked from mwilliamson/mammoth.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 1.98 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
70
71
72
73
74
75
76
77
{
"name": "mammoth",
"version": "1.4.3",
"author": "Michael Williamson <[email protected]>",
"description": "Convert Word documents from docx to simple HTML and Markdown",
"keywords": [
"docx",
"html",
"office",
"word",
"markdown",
"md"
],
"main": "./src/lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/mwilliamson/mammoth.js.git"
},
"dependencies": {
"argparse": "^1.0.9",
"jszip": "^2.5.0",
"lop": "^0.4.0",
"path-is-absolute": "^1.0.0",
"sax": "1.2.4",
"util.promisify": "^1.0.0",
"xmlbuilder": "^9.0.4"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.32",
"@babel/polyfill": "^7.0.0-beta.32",
"@babel/preset-env": "^7.0.0-beta.32",
"babel-core": "^6.26.0",
"babelify": "git+https://github.com/noygal/babelify.git#feature/babel-7-support",
"browserify": "^14.5.0",
"browserify-prepend-licenses": "~1.0.0",
"duck": "0.1.11",
"flow-bin": "^0.59.0",
"fs-jetpack": "^1.2.0",
"gulp": "^3.9.1",
"gulp-babel": "^8.0.0-beta.0",
"gulp-clone": "^1.0.0",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^2.6.1",
"gulp-uglify": "^3.0.0",
"hamjest": "^3.1.0",
"mocha": "^4.0.1",
"rollup-plugin-node-resolve": "^3.0.0",
"rollupify": "^0.4.0",
"source-map-support": "^0.5.0",
"standard": "^10.0.3",
"temp": "^0.8.3",
"uglify-es": "^3.1.9",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0"
},
"browser": {
"./src/lib/unzip.js": "./src/browser/unzip.js",
"./src/lib/docx/files.js": "./src/browser/docx/files.js"
},
"bin": {
"mammoth": "src/bin/mammoth"
},
"scripts": {
"pretest": "gulp pretest",
"test": "mocha --ui exports --require source-map-support/register 'build/test/**/*.tests.js'",
"posttest": "standard",
"build": "gulp build-dist",
"prepare": "gulp minify"
},
"license": "BSD-2-Clause",
"standard": {
"ignore": [
"build",
"dist"
]
}
}