forked from simonbengtsson/jsPDF-AutoTable
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 2.02 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
{
"name": "jspdf-autotable",
"version": "2.3.2",
"description": "Generate pdf tables with javascript (jsPDF plugin)",
"main": "dist/jspdf.plugin.autotable.js",
"directories": {
"example": "examples"
},
"peerDependencies": {
"jspdf": ">=1.3.0"
},
"devDependencies": {
"jspdf": "^1.3.2",
"mocha": "^3.2.0",
"mock-browser": "^0.92.12",
"object-assign": "^4.1.0",
"object.entries": "^1.0.4",
"ts-loader": "^1.3.3",
"typescript": "^2.1.4",
"webpack": "^2.2.0-rc.3",
"webpack-dev-server": "^2.2.0-rc.0"
},
"scripts": {
"start": "webpack-dev-server --open",
"dev": "webpack-dev-server",
"build": "webpack && cp ./dist/jspdf.plugin.autotable.js ./dist/jspdf.plugin.autotable.src.js || true",
"copyLib": "cp ./node_modules/jspdf/dist/jspdf.debug.js ./examples/libs/jspdf.debug.js && cp ./dist/jspdf.plugin.autotable.js ./dist/jspdf.plugin.autotable.src.js && cp ./dist/jspdf.plugin.autotable.js ./examples/libs/jspdf.plugin.autotable.js",
"examples": "npm run copyLib && cd examples/webpack && npm update && npm run build && cd ../browserify && npm update && npm run build ../../",
"version": "npm run build && npm run copyLib && git add -A dist && git add -A examples && git add README.md",
"hosted": "git checkout gh-pages && npm run build && git add -A && git commit -m \"Updated to latest version\" && git push && git checkout master && git clean -f -d",
"deploy": "git push && git push --tags && npm publish && npm run hosted",
"clean": "git checkout dist examples/libs/jspdf.plugin.autotable.src.js",
"test": "mocha --compilers ts:ts-node/register test/*.js || true"
},
"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/"
}