-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.35 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
{
"name": "@vtfk/pdf-generator",
"version": "1.0.0",
"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": "^19.0.0"
},
"devDependencies": {
"@types/jest": "^27.0.3",
"del-cli": "^4.0.1",
"jest": "^27.3.1",
"standardx": "^7.0.0",
"typescript": "^4.5.2"
},
"standardx": {
"env": [
"jest"
],
"ignore": [
"tests/dev.js"
]
}
}