forked from carboneio/carbone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.13 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
{
"name": "carbone",
"description": "Fast, Simple and Powerful report generator. Injects JSON and produces PDF, DOCX, XLSX, ODT, PPTX, ODS, ...!",
"version": "2.0.0",
"bin": "bin/carbone",
"main": "./lib",
"author": "David Grelaud",
"license": "Apache-2.0",
"homepage": "https://carbone.io",
"keywords": [
"report",
"document",
"pdf",
"xslx",
"docx",
"odt",
"ods",
"json"
],
"scripts": {
"test": "node ./node_modules/mocha/bin/mocha test --timeout 100000 --exit",
"lint": "eslint ./*/**.js",
"lint:fix": "eslint ./*/**.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 --tags && git push github-origin --tags"
},
"dependencies": {
"debug": "=4.1.1",
"moment": "=2.27.0",
"moxie-zip": "=0.0.3",
"timsort": "=0.3.0",
"which": "=2.0.2",
"yauzl": "=2.10.0"
},
"devDependencies": {
"eslint": "=7.3.1",
"mocha": "=3.5.3",
"zipfile": "=0.5.11"
},
"engines": {
"node": ">= 10.15.0"
}
}