This repository has been archived by the owner on Jul 31, 2022. It is now read-only.
forked from simonbengtsson/jsPDF-AutoTable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.11 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
{
"name": "jspdf-autotable",
"version": "3.5.14",
"description": "Generate pdf tables with javascript (jsPDF plugin)",
"main": "dist/jspdf.plugin.autotable.js",
"types": "dist/index",
"files": [
"dist/*"
],
"directories": {
"example": "examples"
},
"peerDependencies": {
"jspdf": "^2.1.1"
},
"prettier": {
"semi": false,
"singleQuote": true
},
"devDependencies": {
"@types/mocha": "^8.0.3",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"dts-bundle-generator": "^5.4.0",
"eslint": "^7.9.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"jsdom": "^16.4.0",
"jspdf": "^2.1.1",
"mocha": "^8.1.3",
"npm-check-updates": "^9.0.1",
"prettier": "2.1.2",
"ts-loader": "^8.0.3",
"ts-node": "^9.0.0",
"typescript": "^4.0.2",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"scripts": {
"start": "webpack-dev-server -d --open",
"start-external": "webpack-dev-server -d --open --host 0.0.0.0",
"build": "webpack --mode=production && webpack --mode=production --minified && npm run types",
"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 <dev@simonbengtsson.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/simonbengtsson/jsPDF-AutoTable/issues"
},
"homepage": "https://simonbengtsson.github.io/jsPDF-AutoTable",
"dependencies": {}
}