forked from lalalic/docx4js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.73 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": "docx4js",
"description": "javascript docx parser",
"version": "3.1.32",
"author": {
"name": "Raymond Li",
"email": "[email protected]"
},
"keywords": [
"docx",
"pptx",
"zip docx",
"parser",
"javascript"
],
"license": "MIT",
"readme": "README.md",
"repository": {
"type": "git",
"url": "https://github.com/lalalic/docx4js.git"
},
"devDependencies": {
"jest": "^23.6.0",
"babel-cli": "^6.6.5",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-plugin-transform-class-properties": "^6.6.0",
"babel-plugin-transform-object-rest-spread": "^6.6.5",
"babel-preset-es2015": "^6.6.0",
"browserify": "^13.0.0",
"uglifyify": "^3.0.1",
"watchify": ">=3.0.0 <4.0.0"
},
"dependencies": {
"cfb": "^0.12.1",
"cheerio": "^0.22.0",
"color": "^3.1.0",
"htmlparser2": "^3.9.2",
"jszip": "^2.6.0"
},
"babel": {
"presets": [
"es2015"
],
"plugins": [
"babel-plugin-add-module-exports",
"babel-plugin-transform-object-rest-spread",
"babel-plugin-transform-class-properties"
],
"sourceMaps": "inline"
},
"main": "./lib/",
"scripts": {
"compile": "babel src -d lib",
"compilex": "babel src",
"compile-superdaddy": "babel src -d ../superdaddy/node_modules/docx4js/lib",
"compile-docx-template": "babel src -d ../docx-template/node_modules/docx4js/lib",
"compile-we-edit": "babel src -d ../we-edit/node_modules/docx4js/lib",
"build": "browserify -g uglifyify -r ./lib/index.js:docx4js -o dist/docx4js.js",
"build.watch": "watchify -v -d -r ./lib/index.js:docx4js -o dist/index.js",
"test": "jest",
"test.http": "http-server dist -c-1",
"doc": "esdoc -c esdoc.json"
}
}