-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
70 lines (70 loc) · 1.94 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
{
"name": "docx-merger",
"version": "0.0.0-development",
"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 0",
"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",
"travis-deploy-once": "travis-deploy-once"
},
"repository": {
"type": "git",
"url": "https://github.com/apurvaojas/docx-merger.git"
},
"files": [
"dist",
"README.md"
],
"keywords": [
"docx",
"composition",
"document",
"office",
"docx merge",
"microsoft word"
],
"author": "Apurv Ojas <apurvaojas10@gmail.com>",
"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"
}
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"babel-cli": "^6.26.0",
"babel-loader": "^8.0.5",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"commitizen": "^2.10.1",
"cz-conventional-changelog": "^2.1.0",
"ghooks": "^2.0.4",
"npm-run-all": "^4.1.3",
"rimraf": "^2.6.2",
"semantic-release": "^15.12.3",
"travis-deploy-once": "^5.0.9",
"webpack": "^4.29.0",
"webpack-cli": "^3.2.1"
}
}