-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
68 lines (68 loc) · 1.72 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
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "easyinvoice",
"version": "3.0.47",
"description": "Easily create beautiful PDF invoices.",
"license": "MIT",
"homepage": "https://budgetinvoice.com",
"author": {
"name": "Danny Veldhoen"
},
"scripts": {
"prebuild": "rimraf dist",
"compile": "tsc",
"build": "npm run compile && node esbuild.config.js",
"changelog": "changelog",
"package": "npm run lint && npm run build && npm run test && git add -A dist",
"lint": "eslint . --ext .ts --fix",
"test": "jest",
"test:coverage": "jest --coverage"
},
"main": "index.js",
"module": "index-module.js",
"types": "./src/lib/easyinvoice.d.ts",
"bugs": {
"url": "https://github.com/dveldhoen/easyinvoice/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/dveldhoen/easyinvoice.git"
},
"keywords": [
"invoice",
"quote",
"estimate",
"bill",
"pdf",
"generator"
],
"peerDependencies": {
"pdfjs-dist": "^3.4.120"
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.21.0",
"@jest/globals": "^29.5.0",
"@types/file-saver": "^2.0.5",
"@types/is-base64": "^1.1.1",
"@types/jest": "^29.4.0",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"babel-jest": "^29.5.0",
"esbuild": "^0.17.11",
"eslint": "^7.32.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"prettier": "^3.2.4",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1"
},
"dependencies": {
"axios": "^0.27.2",
"file-saver": "^2.0.5",
"is-base64": "^1.1.0",
"js-base64": "^3.7.5",
"print-js": "^1.6.0"
}
}