forked from carboneio/carbone
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.76 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
56
57
58
59
60
61
62
63
64
{
"name": "@keepsolutions/carbone",
"description": "Fast, Simple and Powerful report generator. Injects JSON and produces PDF, DOCX, XLSX, ODT, PPTX, ODS, ...!",
"version": "3.4.0-4",
"bin": "bin/carbone",
"repository": {
"type": "git",
"url": "git+https://github.com/keeps/carbone.git"
},
"main": "./lib",
"author": "Fork by KEEP SOLUTIONS of the original work of David Grelaud",
"license": "Apache-2.0",
"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",
"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"
},
"dependencies": {
"dayjs": "=1.10.7",
"debug": "=4.3.2",
"figlet": "^1.5.0",
"image-size": "^0.9.3",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"qrcode": "^1.5.1",
"timsort": "=0.3.0",
"which": "=2.0.2",
"xml2js": "^0.4.23",
"xml2js-xpath": "^0.11.0",
"yargonaut": "^1.1.4",
"yargs": "^16.1.0",
"yauzl": "=2.10.0",
"yazl": "=2.5.1"
},
"devDependencies": {
"mocha": "=9.1.3",
"eslint": "=7.7.0",
"prettier": "^2.4.1"
},
"engines": {
"node": ">= 12.14.0"
},
"bugs": {
"url": "https://github.com/keeps/primeng/issues"
},
"directories": {
"doc": "doc",
"example": "examples",
"lib": "lib",
"test": "test"
}
}