UNPKG

1.85 kBJSONView Raw
1{
2 "name": "docx4js",
3 "description": "javascript docx parser",
4 "version": "3.2.17",
5 "author": {
6 "name": "Raymond Li",
7 "email": "lalalic@139.com"
8 },
9 "keywords": [
10 "docx",
11 "pptx",
12 "zip docx",
13 "parser",
14 "javascript"
15 ],
16 "license": "MIT",
17 "readme": "README.md",
18 "repository": {
19 "type": "git",
20 "url": "https://github.com/lalalic/docx4js.git"
21 },
22 "devDependencies": {
23 "jest": "^23.6.0",
24 "babel-cli": "^6.6.5",
25 "babel-plugin-add-module-exports": "^0.1.2",
26 "babel-plugin-transform-class-properties": "^6.6.0",
27 "babel-plugin-transform-object-rest-spread": "^6.6.5",
28 "babel-preset-es2015": "^6.6.0",
29 "browserify": "^13.0.0",
30 "uglifyify": "^3.0.1",
31 "watchify": ">=3.0.0 <4.0.0"
32 },
33 "dependencies": {
34 "cfb": "^0.12.1",
35 "cheerio": "^0.22.0",
36 "color": "^3.1.0",
37 "htmlparser2": "^3.9.2",
38 "jszip": "^2.6.0"
39 },
40 "babel": {
41 "presets": [
42 "es2015"
43 ],
44 "plugins": [
45 "babel-plugin-add-module-exports",
46 "babel-plugin-transform-object-rest-spread",
47 "babel-plugin-transform-class-properties"
48 ],
49 "sourceMaps": "inline"
50 },
51 "main": "./lib/",
52 "scripts": {
53 "compile": "babel src -d lib",
54 "compilex": "babel src",
55 "compile-superdaddy": "babel src -d ../superdaddy/node_modules/docx4js/lib",
56 "compile-docx-template": "babel src -d ../docx-template/node_modules/docx4js/lib",
57 "compile-we-edit": "babel src -d ../we-edit/node_modules/docx4js/lib",
58 "compile-we-office": "babel src -d ../we-office/node_modules/docx4js/lib",
59 "build": "browserify -g uglifyify -r ./lib/index.js:docx4js -o dist/docx4js.js",
60 "build.watch": "watchify -v -d -r ./lib/index.js:docx4js -o dist/index.js",
61 "test": "jest",
62 "test.http": "http-server dist -c-1",
63 "doc": "esdoc -c esdoc.json"
64 }
65}