This repository was archived by the owner on Aug 25, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.35 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.35 KB
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
{
"name": "@vtfk/pdf-generator",
"version": "1.0.1",
"description": "A node package for generating PDF documents",
"main": "index.js",
"author": "Karl-Einar Bergstrøm",
"license": "ISC",
"bugs": {
"url": "https://github.com/vtfk/pdf-generator/issues"
},
"homepage": "https://github.com/vtfk/pdf-generator#readme",
"keywords": [
"PDF",
"PDFGenerator"
],
"scripts": {
"clear_types": "del-cli \"**/*.d.ts\" \"!node_modules\"",
"tsc": "npm run clear_types && tsc",
"jest": "jest",
"test": "standardx && jest",
"prepublish": "npm run tsc && standardx && jest",
"patch": "npm run prepublish && npm version patch && npm publish",
"minor": "npm run prepublish && npm version minor && npm publish",
"major": "npm run prepublish && npm version major && npm publish",
"refresh": "del-cli node_modules && del-cli package-lock.json && npm i"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vtfk/pdf-generator.git"
},
"dependencies": {
"@alheimsins/pdf-make": "^2.0.2",
"html-to-pdfmake": "^2.3.6",
"jsdom": "^18.1.1"
},
"devDependencies": {
"@types/jest": "27.0.3",
"del-cli": "4.0.1",
"jest": "27.4.7",
"standardx": "7.0.0",
"typescript": "4.5.5"
},
"standardx": {
"env": [
"jest"
],
"ignore": [
"tests/dev.js"
]
}
}