-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.26 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
{
"name": "pdf-lib-draw-table-beta",
"version": "0.0.75",
"description": "A library for drawing tables in PDFs using pdf-lib.",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"scripts": {
"test:node": "jest --env=node",
"test:jsdom": "jest --env=jsdom",
"test": "jest --env=node && jest --env=jsdom",
"docs": "npx typedoc src/index.ts",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MP70/pdf-lib-draw-table.git"
},
"keywords": [
"pdf",
"pdf-lib",
"table",
"drawing",
"typescript"
],
"author": {
"name": "Matt Pickering",
"email": "[email protected]",
"url": "https://broadbandinnovations.co.uk"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/MP70/pdf-lib-draw-table/issues"
},
"homepage": "https://github.com/MP70/pdf-lib-draw-table#readme",
"peerDependencies": {
"pdf-lib": "^1.17.1"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"pdf-lib": "^1.17.1",
"ts-jest": "^29.0.5",
"typescript": "^5.0.2"
},
"publishConfig": {
"access": "public"
},
"copyright": "Copyright (c) 2023 Matt Pickering, All rights reserved."
}