forked from jsreport/jsreport
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
112 lines (112 loc) · 2.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "jsreport",
"version": "2.7.2",
"author": {
"name": "Jan Blaha",
"email": "[email protected]"
},
"contributors": [
"BJR Matos <[email protected]> (https://github.com/bjrmatos)",
"Jan Blaha"
],
"description": "javascript based business reporting",
"keywords": [
"report",
"business",
"javascript"
],
"homepage": "https://github.com/jsreport/jsreport",
"repository": {
"type": "git",
"url": "[email protected]:jsreport/jsreport.git"
},
"standard": {
"ignore": [
"data/**"
],
"globals": [
"describe",
"it",
"beforeEach",
"afterEach",
"define"
]
},
"jsreport": {
"entryPoint": "server.js"
},
"dependencies": {
"handlebars": "4.7.6",
"jsreport-assets": "1.5.3",
"jsreport-authentication": "2.5.0",
"jsreport-authorization": "2.3.0",
"jsreport-base": "2.0.2",
"jsreport-browser-client": "2.2.2",
"jsreport-child-templates": "1.3.2",
"jsreport-chrome-pdf": "1.8.0",
"jsreport-cli": "2.2.3",
"jsreport-core": "2.8.1",
"jsreport-data": "2.2.0",
"jsreport-debug": "2.1.3",
"jsreport-docx": "2.6.0",
"jsreport-express": "2.6.0",
"jsreport-freeze": "2.0.0",
"jsreport-fs-store": "2.8.0",
"jsreport-handlebars": "2.1.0",
"jsreport-html-to-xlsx": "2.6.0",
"jsreport-import-export": "1.6.0",
"jsreport-jsrender": "2.1.1",
"jsreport-licensing": "2.2.2",
"jsreport-pdf-utils": "1.7.0",
"jsreport-pptx": "0.6.0",
"jsreport-public-templates": "2.1.0",
"jsreport-reports": "2.3.0",
"jsreport-resources": "2.0.4",
"jsreport-sample-template": "2.5.1",
"jsreport-scheduling": "2.3.0",
"jsreport-scripts": "2.4.0",
"jsreport-static-pdf": "0.3.1",
"jsreport-studio": "2.8.0",
"jsreport-studio-theme-dark": "0.3.0",
"jsreport-tags": "2.3.0",
"jsreport-templates": "2.3.3",
"jsreport-text": "2.0.0",
"jsreport-version-control": "1.4.0",
"jsreport-xlsx": "2.3.1",
"mkdirp": "0.5.5",
"node.extend.without.arrays": "1.1.6",
"puppeteer": "2.0.0",
"semver": "6.3.0"
},
"devDependencies": {
"archiver": "3.0.0",
"cross-env": "5.2.1",
"eslint": "5.16.0",
"eslint-config-standard": "12.0.0",
"eslint-config-standard-react": "7.0.2",
"in-publish": "2.0.1",
"jsreport-compile": "2.5.0",
"jsreport-puppeteer-compile": "1.2.1",
"mocha": "6.2.0",
"npm-run-all": "4.1.5",
"rimraf": "2.6.3",
"should": "13.2.3",
"standard": "12.0.1"
},
"scripts": {
"test": "mocha test --timeout 35000 && standard",
"compile": "node compile.js",
"start": "node server.js"
},
"engines": {
"node": ">=8.9"
},
"main": "index.js",
"license": "LGPL",
"files": [
"lib",
"index.js",
"config.md",
"example.server.js"
]
}