forked from saknarak/docx-merger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.87 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
{
"name": "docx-merger",
"version": "1.0.0",
"license": "MIT",
"description": "Javascript Library for Merging Docx file in NodeJS and Browser Environment.",
"main": "dist/index.js",
"scripts": {
"commit": "git-cz",
"test": "echo \"Error: no test specified\" && exit 1",
"validate": "echo \"Check For Test Coverage\" && exit 0",
"prebuild": "rimraf dist",
"build": "npm-run-all --parallel build:*",
"build:main": "babel --copy-files --out-dir dist --ignore *.test.js src",
"build:umd": "webpack --output-filename docx-merger.js",
"build:umd.min": "webpack --output-filename docx-merger.min.js -p",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "git+https://github.com/apurvaojas/docx-merger.git"
},
"files": [
"dist",
"README.md"
],
"keywords": [
"docx",
"composition",
"document",
"office",
"docx merge",
"microsoft word"
],
"author": "Apurv Ojas <[email protected]>",
"dependencies": {
"jszip": "2.6.1",
"xmldom": "^0.1.27"
},
"bugs": {
"url": "https://github.com/apurvaojas/docx-merger/issues"
},
"homepage": "https://github.com/apurvaojas/docx-merger#readme",
"config": {
"ghooks": {
"pre-commit": "npm run validate"
},
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"babel": {
"presets": [
"es2015",
"stage-2"
]
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-loader": "^7.1.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.24.1",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.0.0",
"ghooks": "^2.0.0",
"npm-run-all": "^4.0.2",
"rimraf": "^2.6.1",
"semantic-release": "^6.3.6",
"webpack": "^3.5.4"
}
}