-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.12 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
{
"name": "@alheimsins/pdf-make",
"version": "1.0.4",
"description": "High-level API for pdfmake PDF document generation library",
"main": "src/index.js",
"scripts": {
"test": "standard && ava",
"refresh": "rm -rf node_modules && rm package-lock.json && npm i"
},
"publishConfig": {
"access": "public"
},
"files": [
"src/*",
"fonts/*"
],
"author": {
"name": "Jonas Enge",
"email": "[email protected]",
"url": "https://github.com/maccyber"
},
"contributors": [
{
"name": "Geir Gåsodden",
"email": "[email protected]",
"url": "https://github.com/zrrrzzt"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/Alheimsins/pdf-make.git"
},
"keywords": [
"pdf",
"pdfmake",
"pdfkit"
],
"bugs": {
"url": "https://github.com/Alheimsins/pdf-make/issues"
},
"homepage": "https://github.com/Alheimsins/pdf-make#readme",
"license": "MIT",
"dependencies": {
"pdfmake": "0.1.65"
},
"devDependencies": {
"ava": "3.9.0",
"standard": "14.3.4"
},
"engines": {
"node": ">=12.18.1"
}
}