forked from lalalic/docx2html
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.52 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
{
"name": "docx2html",
"description": "a javascript docx converter to html based on docx4js",
"version": "1.3.3",
"author": {
"name": "Raymond Li",
"email": "[email protected]"
},
"keywords": [
"docx",
"converter",
"javascript",
"html"
],
"license": "MIT",
"readme": "README.md",
"repository": {
"type": "git",
"url": "https://github.com/lalalic/docx2html.git"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-plugin-transform-class-properties": "^6.18.0",
"babel-plugin-transform-object-rest-spread": "^6.16.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.6.0",
"browserify": "^13.0.0",
"jasmine": "^2.2.1",
"jasmine-core": "^2.4.1",
"uglify-js": "^2.6.2",
"watchify": ">=3.0.0 <4.0.0",
"uglifyify": "^3.0.1"
},
"dependencies": {
"babel-runtime": "^6.18.0",
"docx4js": "^1.x.x",
"jsdom": "^8.3.1",
"jszip": "^3.0.0"
},
"babel": {
"presets": [
"es2015"
],
"plugins": [
"babel-plugin-add-module-exports",
"babel-plugin-transform-object-rest-spread",
"babel-plugin-transform-class-properties",
"babel-plugin-transform-runtime"
]
},
"scripts": {
"compile": "babel src -d lib --source-maps inline",
"build": "browserify -r ./lib:docx2html -o dist/docx2html.min.js",
"dev": "watchify -v -d -r ./lib:docx2html -o docs/index.js -i jquery",
"test": "jasmine"
},
"main": "./lib/index.js"
}