-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.51 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
{
"name": "pdf-automizer",
"version": "0.0.1",
"description": "A template based pdf generator",
"repository": {
"type": "git",
"url": "git+https://github.com/singerla/pdf-automizer.git"
},
"author": "Thomas Singer <[email protected]> (github.com/singerla)",
"license": "MIT",
"private": false,
"scripts": {
"build": "tsc",
"dev": "nodemon -e ts --exec 'ts-node' src/dev.ts",
"test": "npx jest",
"test-coverage": "npx jest --coverage",
"lint": "eslint '*/**/*.{js,ts,tsx}' --fix",
"prettier": "prettier --config .prettierrc 'src/**/*.ts' --write"
},
"files": [
"dist",
"README"
],
"main": "dist/index.js",
"types": "dist/index.d.js",
"keywords": [
"js-create-pdf",
"js-generate-pdf",
"js-pdf",
"js-produce-pdf",
"js-pdf",
"pdf",
"pdf-automation",
"pdf-generator",
"pdf"
],
"devDependencies": {
"@types/jest": "^29.4.0",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.4.0",
"nodemon": "^2.0.20",
"prettier": "^2.8.3",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.4.5"
},
"dependencies": {
"pdf-lib": "^1.17.1"
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}