forked from evilc0des/docxtemplater-image-module-free
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
59 lines (59 loc) · 1.79 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
{
"name": "@slosarek/docxtemplater-image-module-free",
"version": "1.2.0",
"description": "Open Source Image Module for docxtemplater",
"main": "js/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": "rimraf build && mkdirp build && 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": "^7.23.9",
"@babel/core": "^7.23.9",
"@babel/eslint-parser": "^7.23.10",
"@babel/preset-env": "^7.23.9",
"browserify": "^14.0.0",
"chai": "^3.4.1",
"docxtemplater": "^3.44.0",
"eslint": "^8.56.0",
"eslint-scope": "^8.0.0",
"image-size": "^0.5.1",
"istanbul": "^0.4.5",
"mkdirp": "^0.5.1",
"mocha": "^10.3.0",
"pizzip": "^3.1.6",
"rimraf": "^2.5.4",
"uglifyjs": "^2.4.10"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mslosarek/docxtemplater-image-module-free.git"
},
"author": "Dk Saha",
"contributors": [
"Dk Saha",
"Mark Slosarek"
],
"license": "MIT",
"dependencies": {
"@xmldom/xmldom": "^0.8.10"
},
"bugs": {
"url": "https://github.com/mslosarek/docxtemplater-image-module-free/issues"
},
"homepage": "https://github.com/mslosarek/docxtemplater-image-module-free#readme",
"directories": {
"example": "examples"
},
"keywords": [
"docxtemplater",
"image-module"
]
}