forked from lalalic/docx2html
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (63 loc) · 1.67 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
{
"name": "docx2html",
"description": "a javascript docx converter to html based on docx4js",
"version": "1.2.0",
"author": {
"name": "Raymond Li",
"email": "[email protected]"
},
"keywords": [
"docx",
"converter",
"javascript",
"html"
],
"license": "GPL",
"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",
"karma": "^0.13.22",
"karma-browserify": "^5.0.3",
"karma-chrome-launcher": "^0.2.3",
"karma-jasmine": "^0.3.8",
"uglify-js": "^2.6.2",
"watchify": ">=3.0.0 <4.0.0"
},
"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": {
"build": "babel src -d lib --source-maps inline",
"dist": "watchify -v -d -r ./lib:docx2html -o dist/index.js -i jquery",
"dist.min": "browserify -g uglifyify -r ./lib:docx2html -o dist/index.js",
"test": "jasmine",
"test.debug": "node --debug-brk .jasmine.js",
"karma": "karma start"
}
}