forked from parallax/jsPDF
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 3.07 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
89
90
91
92
93
94
95
96
97
98
99
{
"name": "jspdf",
"version": "1.5.3",
"homepage": "https://github.com/mrrio/jspdf",
"description": "PDF Document creation from JavaScript",
"main": "dist/jspdf.min.js",
"bin": {
"jsPDF-makeFonts": "makeFonts.js"
},
"files": [
"dist/jspdf.debug.js",
"dist/jspdf.min.js",
"dist/jspdf.node.debug.js",
"dist/jspdf.node.min.js",
"dist/jspdf.worker.debug.js",
"dist/jspdf.worker.min.js",
"types/index.d.ts",
"README.md",
"makeFonts.js"
],
"typings": "types/index.d.ts",
"types": "types/index.d.ts",
"keywords": [
"pdf"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/MrRio/jsPDF.git"
},
"dependencies": {
"atob": "^2.1.2",
"btoa": "^1.2.1",
"canvg": "1.5.3",
"es6-promise": "^4.2.8",
"file-saver": "2.0.1",
"html2canvas": "^1.0.0-rc.5",
"omggif": "1.0.9",
"stackblur-canvas": "2.2.0"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/plugin-external-helpers": "7.2.0",
"@babel/preset-env": "^7.8.4",
"acorn": "^6.4.0",
"babel-plugin-rewire-exports": "1.0.1",
"chalk": "^4.1.0",
"codeclimate-test-reporter": "0.5.1",
"diff": "4.0.1",
"docdash": "1.1.0",
"eslint": "^5.16.0",
"folder-delete": "1.0.4",
"gulp-babel": "^8.0.0",
"inquirer": "^6.5.2",
"jasmine": "3.5.0",
"jasmine-core": "3.5.0",
"jasmine-expect": "4.0.3",
"js-yaml": "3.13.1",
"jsdoc": "^3.6.3",
"karma": "5.1.0",
"karma-babel-preprocessor": "8.0.1",
"karma-chrome-launcher": "3.1.0",
"karma-coverage": "2.0.2",
"karma-firefox-launcher": "1.3.0",
"karma-ie-launcher": "1.0.0",
"karma-jasmine": "3.3.1",
"karma-jasmine-matchers": "4.0.2",
"karma-mocha-reporter": "2.2.5",
"karma-sauce-launcher": "4.1.5",
"karma-verbose-reporter": "0.0.6",
"local-web-server": "2.6.1",
"log-utils": "^1.0.0",
"markdown": "0.5.0",
"prettier": "^1.19.1",
"promise-polyfill": "8.1.1",
"rollup": "1.12.1",
"rollup-plugin-babel": "4.3.2",
"rollup-plugin-buble": "^0.19.6",
"rollup-plugin-node-resolve": "4.2.3",
"rollup-plugin-sizes": "^0.5.1",
"uglify-js": "3.5.8"
},
"scripts": {
"start": "ws",
"build": "node build.js && node build.js type=node && node build.js type=worker",
"build-browser": "node build",
"build-node": "node build type=node",
"build-worker": "node build type=worker",
"version": "npm run build && git add -A dist",
"test": "karma start karma.saucelabs.conf.js --single-run --verbose && for a in coverage/*; do codeclimate-test-reporter < \"$a/lcov.info\"; break; done",
"test-local": "karma start karma.conf.js",
"test-local-dist": "karma start karma.dist.conf.js",
"test-node": "node build type=node minify=false && jasmine --config=spec/support/jasmine.json",
"test-training": "node spec/utils/reference-server.js",
"prettier": "prettier --write build.js \"{spec,examples,src}/**/*.js\"",
"delete-docs": "node deletedocs.js",
"generate-docs": "./node_modules/.bin/jsdoc -c jsdoc.json --readme README.md"
}
}