forked from t7tran/carbone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.64 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
{
"name": "carbone",
"description": "Fast, Simple and Powerful report generator. Injects JSON and produces PDF, DOCX, XLSX, ODT, PPTX, ODS, ...!",
"version": "3.5.6",
"bin": "bin/carbone",
"main": "./lib",
"author": "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",
"test:render": "npm run test -- --grep 'Carbone Render Tests'",
"test:render:docx": "npm run test -- --grep 'Docx to Docx'",
"test:render:pdf": "npm run test -- --grep 'Docx to PDF'",
"test:render:html": "npm run test -- --grep 'HTML to PDF'",
"lint": "eslint ./lib/**.js ./test/**.js ./formatters/**.js",
"lint:fix": "eslint ./lib/**.js ./test/**.js ./formatters/**.js --fix",
"postpublish": "PACKAGE_VERSION=$(cat package.json | grep \\\"version\\\" | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g' | tr -d '[[:space:]]') && git tag $PACKAGE_VERSION && git push origin $PACKAGE_VERSION && git push github-origin $PACKAGE_VERSION",
"testal": "node al_test.js"
},
"dependencies": {
"axios": "^1.7.4",
"dayjs": "=1.11.11",
"dayjs-timezone-iana-plugin": "=0.1.0",
"debug": "=4.3.5",
"html-minifier": "=4.0.0",
"html2json": "=1.0.2",
"jsdom": "=25.0.1",
"sanitize-html": "=2.13.0",
"which": "=2.0.2",
"yauzl": "=2.10.0",
"yazl": "=2.5.1"
},
"devDependencies": {
"mocha": "=9.2.2",
"pdf-visual-diff": "=0.9.0"
},
"engines": {
"node": ">= 12.14.0"
}
}