UNPKG

2.25 kBJSONView Raw
1{
2 "name": "jspdf-autotable",
3 "version": "3.5.7",
4 "description": "Generate pdf tables with javascript (jsPDF plugin)",
5 "main": "dist/jspdf.plugin.autotable.js",
6 "types": "dist/index",
7 "files": [
8 "dist/*"
9 ],
10 "directories": {
11 "example": "examples"
12 },
13 "peerDependencies": {
14 "jspdf": "^2.0.0"
15 },
16 "prettier": {
17 "semi": false,
18 "singleQuote": true
19 },
20 "devDependencies": {
21 "@types/mocha": "^7.0.2",
22 "@typescript-eslint/eslint-plugin": "^3.4.0",
23 "@typescript-eslint/parser": "^3.4.0",
24 "dts-bundle-generator": "^4.3.0",
25 "eslint": "^7.3.1",
26 "eslint-config-prettier": "^6.11.0",
27 "eslint-plugin-prettier": "^3.1.4",
28 "jsdom": "^16.2.2",
29 "jspdf": "^2.0.0",
30 "mocha": "^8.0.1",
31 "npm-check-updates": "^7.0.1",
32 "prettier": "2.0.5",
33 "ts-loader": "^7.0.5",
34 "ts-node": "^8.10.2",
35 "typescript": "^3.9.5",
36 "webpack": "^4.43.0",
37 "webpack-cli": "^3.3.12",
38 "webpack-dev-server": "^3.11.0"
39 },
40 "scripts": {
41 "start": "webpack-dev-server -d --open",
42 "start-external": "webpack-dev-server -d --open --host 0.0.0.0",
43 "build": "webpack --mode=production && webpack --mode=production --minified && npm run types",
44 "lint": "eslint . --ext .ts",
45 "test": "mocha -r ts-node/register test/test*.ts",
46 "format": "prettier --write src",
47 "version": "npm test && npm run build && git add -A dist",
48 "hosting": "git push origin master:gh-pages -f",
49 "deploy": "git push --follow-tags && npm run hosting && npm publish",
50 "update-libs": "ncu -u && npm i && cd examples/browserify && ncu -u && npm i && cd ../nodejs && ncu -u && npm i && cd ../requirejs && ncu -u && npm i && cd ../typescript && ncu -u && npm i && cd ../webpack && ncu -u && npm i",
51 "types": "dts-bundle-generator src/main.ts -o ./dist/index.d.ts"
52 },
53 "repository": {
54 "type": "git",
55 "url": "https://github.com/simonbengtsson/jsPDF-AutoTable.git"
56 },
57 "keywords": [
58 "pdf",
59 "table",
60 "jspdf"
61 ],
62 "author": "Simon Bengtsson <dev@simonbengtsson.com>",
63 "license": "MIT",
64 "bugs": {
65 "url": "https://github.com/simonbengtsson/jsPDF-AutoTable/issues"
66 },
67 "homepage": "https://simonbengtsson.github.io/jsPDF-AutoTable",
68 "dependencies": {}
69}