-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.77 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
{
"name": "@ireceipt.pro/js",
"version": "1.1.39",
"description": "Create PDF files or images (JPG, PNG, WEBP) from your HTML template.",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"test": "node --test test/*.test.js",
"cov": "node_modules/.bin/nyc npm run test",
"prebuild": "node_modules/.bin/eslint src/**/*.ts",
"build": "rm -rf lib && node_modules/.bin/tsc --declaration",
"update": "eval \"$(node -e 'const t = require(`./package.json`);const ignore = require(`./ignoreUpdatesModules.json`);console.log(`npm i ${(Object.keys(t.dependencies || {}).filter((e)=>ignore.base.indexOf(e) === -1).map((e)=>(`${e}@latest`)).join(` `))} --save&&npm i ${(Object.keys(t.devDependencies || {}).filter((e)=>ignore.dev.indexOf(e) === -1).map((e)=>(`${e}@latest`)).join(` `))} --save-dev`);')\""
},
"author": "Siarhei Dudko",
"funding": [
{
"type": "buymeacoffee",
"url": "https://www.buymeacoffee.com/dudko.dev"
},
{
"type": "paypal",
"url": "https://paypal.me/dudkodev"
},
{
"type": "patreon",
"url": "https://patreon.com/dudko_dev"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "github:ireceipt-pro/js"
},
"keywords": [
"PDF",
"JPG",
"JPEG",
"PNG",
"WEBP",
"IMAGE",
"template",
"templates",
"mustache",
"invoice",
"giftcard"
],
"homepage": "https://www.npmjs.com/package/@ireceipt-pro/js",
"devDependencies": {
"@eslint/js": "^9.17.0",
"eslint": "^9.17.0",
"nyc": "^17.1.0",
"prettier": "^3.4.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.19.1"
},
"engines": {
"node": ">=14"
},
"directorie": {
"test": "./test/"
},
"dependencies": {
"axios": "^1.7.9"
}
}