forked from jsreport/jsreport-docxtemplater
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.44 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
{
"name": "jsreport-docxtemplater",
"version": "0.2.0",
"description": "jsreport recipe using docxtemplater to create docx files",
"homepage": "https://github.com/jsreport/jsreport-docxtemplater",
"repository": {
"type": "git",
"url": "[email protected]:jsreport/jsreport-docxtemplater.git"
},
"author": {
"name": "Jan Blaha",
"email": "[email protected]"
},
"contributos": [
"BJR Matos <[email protected]> (https://github.com/bjrmatos)"
],
"keywords": [
"jsreport",
"docx"
],
"scripts": {
"test": "mocha test --timeout 8000 && standard",
"build": "jsreport-studio-build",
"prepublishOnly": "jsreport-studio-build"
},
"standard": {
"ignore": [
"main.js"
],
"parser": "babel-eslint",
"env": {
"node": true,
"mocha": true,
"browser": true
}
},
"license": "MIT",
"dependencies": {
"axios": "0.18.0",
"docxtemplater": "3.9.9",
"form-data": "2.3.3",
"jszip": "2.6.1"
},
"devDependencies": {
"babel-eslint": "10.0.1",
"eslint": "5.9.0",
"eslint-plugin-babel": "5.3.0",
"jsreport-assets": "1.1.2",
"jsreport-core": "2.4.1",
"jsreport-studio-dev": "1.3.2",
"jsreport-templates": "2.2.0",
"mocha": "5.2.0",
"should": "13.2.3",
"standard": "12.0.1",
"textract": "2.4.0"
},
"files": [
"lib",
"studio",
"index.js",
"jsreport.config.js"
],
"engines": {
"node": ">=8.9"
}
}