-
-
Notifications
You must be signed in to change notification settings - Fork 84
/
package.json
99 lines (99 loc) · 2.51 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
{
"name": "fluentreports",
"description": "A simple, Fluent API for creating PDF Reports",
"url": "https://github.com/Nathanaela/fluentreports",
"keywords": [
"pdf",
"report",
"reporting",
"print",
"reports",
"engine",
"business",
"business management",
"pdf writer",
"pdf generator",
"document",
"pdf reports",
"pdf reporting"
],
"author": "Nathanael Anderson <[email protected]> (https://fluentreports.com/)",
"contributors": [
"Alan Henager <[email protected]>",
"Mark Getz <[email protected]>",
"Beau West <[email protected]>",
"Michael Keller <[email protected]>",
"Marcus Christensson"
],
"funding": {
"type": "github",
"url": "https://github.com/sponsors/NathanaelA/"
},
"license": "MIT",
"lib": "lib",
"type": "commonjs",
"bugs": {
"url": "https://github.com/Nathanaela/fluentreports/issues"
},
"dependencies": {
"pdfkit": "0.13.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Nathanaela/fluentreports.git"
},
"main": "./lib/fluentReports.js",
"version": "1.4.3",
"engines": {
"node": "*"
},
"files": [
"./package.json",
"./commands.md",
"./LICENSE",
"./README.md",
"./tutorials.md",
"./lib/fluentReports.js",
"./lib/fluentReports.pdfkit.js",
"./lib/fluentReportsBuilder.js",
"./lib/esm/fluentReports.mjs",
"./lib/esm/fluentReportsBuilder.mjs",
"./lib/esm/package.json",
"./lib/third-party/blob-stream.js",
"./lib/third-party/blob.js",
"./generator/fluentReportsBrowser.min.js",
"./generator/fluentReportsGenerator.js",
"./generator/fr.css",
"./generator/plain-draggable.min.js",
"./generator/readme.md"
],
"exports": {
".": [
{
"import": "./lib/esm/fluentReports.mjs",
"require": "./lib/fluentReports.js"
},
"./lib/fluentReports.js"
],
"./lib/*": "./lib/*.js",
"./lib/*.js": "./lib/*.js",
"./lib/esm/*": "./lib/esm/*.mjs",
"./lib/esm/*.mjs": "./lib/esm/*.mjs",
"./package.json": "./package.json",
"./lib/esm/package.json": "./lib/esm/package.json"
},
"devDependencies": {
"browser-pack-flat": "^3.4.2",
"common-shakeify": "^0.6.2",
"envify": "^4.1.0",
"tinyify": "^2.5.1",
"uglify-js": "^3.6.4",
"uglifyify": "^5.0.2",
"unassertify": "^2.1.1",
"blink-diff": "latest",
"uncss": "^0.17.3"
},
"scripts": {
"test": "chmod +x ./examples/runtests.sh && ./examples/runtests.sh"
}
}