forked from leearaneta/pdfmake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.24 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
{
"name": "@crhio/pdfmake",
"version": "0.2.1",
"description": "Client/server side PDF printing in pure JavaScript",
"main": "src/printer.js",
"browser": "build/pdfmake.js",
"directories": {
"test": "tests"
},
"dependencies": {
"@crhio/svg-to-pdfkit": "^1.0.0",
"@foliojs-fork/linebreak": "^1.1.0",
"@foliojs-fork/pdfkit": "^0.12.1",
"iconv-lite": "^0.6.3",
"xmldoc": "^1.1.2"
},
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.6",
"@babel/plugin-transform-modules-commonjs": "^7.14.5",
"@babel/preset-env": "^7.14.7",
"assert": "^2.0.0",
"babel-loader": "^8.2.2",
"brfs": "^2.0.2",
"browserify-zlib": "^0.2.0",
"buffer": "^6.0.3",
"core-js": "^3.15.2",
"eslint": "^7.29.0",
"eslint-plugin-jsdoc": "^35.4.1",
"expose-loader": "^3.0.0",
"file-saver": "^2.0.5",
"mocha": "^9.0.1",
"npm-run-all": "^4.1.5",
"process": "^0.11.10",
"rewire": "^5.0.0",
"sinon": "^11.1.1",
"stream-browserify": "^3.0.0",
"string-replace-webpack-plugin": "^0.1.3",
"terser-webpack-plugin": "^5.1.4",
"transform-loader": "^0.2.4",
"util": "^0.12.4",
"webpack": "^5.42.0",
"webpack-cli": "^4.7.2"
},
"engines": {
"node": ">=12"
},
"scripts": {
"test": "run-s build mocha",
"build": "run-s build:browser",
"build:browser": "webpack",
"build:browser-standard-fonts": "webpack --config webpack-standardfonts.config.js",
"build:vfs": "node build-vfs.js \"./examples/fonts\"",
"build:examples": "node build-examples.js",
"lint": "eslint \"./src/**/*.js\" \"./tests/**/*.js\" \"./examples/**/*.js\"",
"mocha": "mocha --reporter spec \"./tests/**/*.js\"",
"playground": "node dev-playground/server.js"
},
"repository": {
"type": "git",
"url": "git://github.com/bpampuch/pdfmake.git"
},
"keywords": [
"pdf",
"javascript",
"printing",
"layout"
],
"author": "Bartek Pampuch <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bpampuch/pdfmake/issues"
},
"homepage": "http://pdfmake.org",
"config": {
"blanket": {
"pattern": "src",
"data-cover-never": [
"node_modules",
"tests"
]
}
}
}