forked from carboneio/carbone
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.2 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.2 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
{
"name": "@rodewitsch/carbone",
"description": "Fast, Simple and Powerful report generator. Injects JSON and produces PDF, DOCX, XLSX, ODT, PPTX, ODS, ...!",
"version": "5.0.0-beta",
"bin": "bin/carbone",
"main": "./lib",
"types": "types/lib/index.d.ts",
"bundleDependencies": false,
"repository": {
"type": "git",
"url": "https://github.com/rodewitsch/carbone"
},
"author": {
"name": "Fork of the original work of David Grelaud"
},
"license": "SEE LICENSE IN LICENSE.md",
"homepage": "https://carbone.io",
"keywords": [
"report",
"document",
"pdf",
"xslx",
"docx",
"odt",
"ods",
"json"
],
"scripts": {
"test": "./node_modules/.bin/mocha test --timeout 100000 --exit",
"lint": "eslint ./lib/**.js ./test/**.js ./formatters/**.js",
"lint:fix": "eslint ./lib/**.js ./test/**.js ./formatters/**.js --fix"
},
"dependencies": {
"dayjs": "=1.11.11",
"dayjs-timezone-iana-plugin": "=0.1.0",
"debug": "=4.3.5",
"html2json": "^1.0.2",
"which": "=2.0.2",
"xml-js": "^1.6.11",
"yauzl": "=2.10.0",
"yazl": "=2.5.1"
},
"devDependencies": {
"mocha": "=9.2.2"
},
"engines": {
"node": ">= 12.14.0"
}
}