forked from bahulneel/docxtemplater-image-module
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.62 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
{
"name": "@baitic/docxtemplater-image-module",
"version": "3.1.0",
"description": "Image Module for docxtemplater",
"main": "es6/index.js",
"scripts": {
"test:coverage": "istanbul cover _mocha -- es6/test.js",
"compile": "rimraf js && mkdirp js && babel es6 --out-dir js",
"preversion": "npm test && npm run browserify && npm run uglify",
"test:compiled": "mocha js/test.js",
"test:es6": "mocha es6/test.js",
"lint": "eslint .",
"test": "npm run compile && npm run test:compiled",
"browserify": "mkdir build -p && browserify --insert-global-vars __filename,__dirname -r ./js/index.js -s ImageModule > build/imagemodule.js",
"uglify": "uglifyjs build/imagemodule.js > build/imagemodule.min.js"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-eslint": "^7.1.1",
"babel-preset-es2015": "^6.3.13",
"browserify": "^14.0.0",
"chai": "^3.4.1",
"eslint": "^3.15.0",
"image-size": "^0.5.1",
"istanbul": "^0.4.5",
"jszip": "^2.6.1",
"mkdirp": "^0.5.1",
"mocha": "^3.2.0",
"rimraf": "^2.5.4",
"uglifyjs": "^2.4.10"
},
"repository": {
"type": "git",
"url": "git+https://github.com/open-xml-templating/docxtemplater-image-module.git"
},
"author": "Edgar Hipp",
"license": "MIT",
"dependencies": {
"xmldom": "^0.1.27"
},
"peerDependencies": {
"@baitic/docxtemplater": "^3.25.2"
},
"bugs": {
"url": "https://github.com/open-xml-templating/docxtemplater-image-module/issues"
},
"homepage": "https://github.com/open-xml-templating/docxtemplater-image-module#readme",
"directories": {
"example": "examples"
}
}