-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.82 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.82 KB
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
{
"name": "anychart-report-server",
"title": "AnyChart Node.js Report Server",
"description": "AnyChart Node.js Report Server is a lightweight web server that provides API for generating vector graphics (PDF, SVG, or PS), bitmap images (PNG, JPG, or TIFF), PDF reports, and data in CSV and XLSX (Excel). It uses the JavaScript code as well as JSON and XML configurations as input data. The server is very easy to install and customize, you can run it on any major platform: Linux, Windows, and macOS. It is ideal for creating report systems that send charts via email or social network sharing tools.",
"main": "./index.js",
"version": "1.0.14",
"homepage": "https://www.anychart.com",
"license": "Apache-2.0",
"keywords": [
"PDF Report",
"report system",
"report server",
"server-side rendering",
"server charts",
"email charts",
"social network sharing tools",
"chart export",
"server-side chart generation"
],
"repository": {
"type": "git",
"url": "https://github.com/AnyChart/Node.js-Report-Server"
},
"bugs": {
"url": "https://github.com/AnyChart/Node.js-Report-Server/issues"
},
"author": "AnyChart <contact@anychart.com> (http://anychart.com)",
"scripts": {
"postinstall": "node cli.js",
"start": "node index.js",
"test": "mocha"
},
"bin": "./index.js",
"dependencies": {
"anychart-nodejs": "^1.3.1",
"body-parser": "^1.18.2",
"commander": "^2.12.2",
"csv": "^1.2.1",
"express": "^4.16.2",
"fontfaceobserver": "^2.0.13",
"pdfmake": "^0.1.34",
"request": "^2.83.0",
"uuid": "^3.1.0",
"vm2": "^3.5.2",
"winston": "^2.4.0",
"winston-daily-rotate-file": "^1.7.2",
"xlsx": "^0.10.9",
"xmldom": "^0.1.27"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-http": "^3.0.0",
"mocha": "^3.5.3"
}
}