-
-
Notifications
You must be signed in to change notification settings - Fork 624
/
package.json
88 lines (88 loc) · 2.69 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "jspdf-autotable",
"version": "3.8.4",
"description": "Generate pdf tables with javascript (jsPDF plugin)",
"main": "dist/jspdf.plugin.autotable.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/jspdf.plugin.autotable.js"
},
"./es": {
"types": "./dist/index.d.ts",
"default": "./dist/jspdf.plugin.autotable.mjs"
}
},
"types": "dist/index",
"files": [
"dist/*"
],
"browserslist": [
"last 2 versions",
"> 1%",
"IE 11"
],
"directories": {
"example": "examples"
},
"peerDependencies": {
"jspdf": "^2.5.1"
},
"prettier": {
"semi": false,
"singleQuote": true
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.5",
"@types/mocha": "^10.0.2",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"dts-bundle-generator": "^8.0.1",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"jsdom": "^22.1.0",
"jspdf": "^2.5.1",
"mocha": "^10.2.0",
"npm-check-updates": "^16.14.5",
"prettier": "^3.0.3",
"rollup": "^4.0.2",
"ts-loader": "^9.5.0",
"ts-node": "^10.9.1",
"tslib": "^2.6.2",
"typescript": "^5.2.2",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"scripts": {
"start": "webpack serve --config webpack.config.mjs --mode=development",
"checkout-pr": "git fetch origin pull/$PR/head:pr$PR && git checkout pr$PR",
"start-external": "webpack serve --config webpack.config.mjs --mode=development --host 0.0.0.0",
"build": "webpack --mode=production && webpack --mode=production --env minified && npm run buildes && npm run types",
"buildes": "rollup --config rollup.config.mjs",
"lint": "eslint . --ext .ts",
"test": "mocha -r ts-node/register test/test*.ts",
"format": "prettier --write src",
"version": "npm test && npm run build && git add -A dist",
"hosting": "git push origin master:gh-pages -f",
"deploy": "git push --follow-tags && npm run hosting && npm publish",
"update-libs": "cd examples/nodejs && ncu -u && npm i && cd ../typescript && ncu -u && npm i && cd ../webpack && ncu -u && npm i",
"types": "dts-bundle-generator src/main.ts -o ./dist/index.d.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/simonbengtsson/jsPDF-AutoTable.git"
},
"keywords": [
"pdf",
"table",
"jspdf"
],
"author": "Simon Bengtsson <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/simonbengtsson/jsPDF-AutoTable/issues"
},
"homepage": "https://simonbengtsson.github.io/jsPDF-AutoTable"
}