forked from parallax/jsPDF
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.82 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
{
"name": "jspdf",
"version": "1.5.3",
"homepage": "https://github.com/mrrio/jspdf",
"description": "PDF Document creation from JavaScript",
"main": "dist/jspdf.min.js",
"bugs": {
"url": "https://github.com/MrRio/jsPDF/issues"
},
"files": [
"dist/jspdf.debug.js",
"dist/jspdf.min.js",
"dist/jspdf.node.debug.js",
"dist/jspdf.node.min.js",
"README.md",
"MIT-LICENSE.txt"
],
"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.6",
"file-saver": "2.0.1",
"html2canvas": "^1.0.0-rc.1",
"omggif": "1.0.9",
"stackblur-canvas": "2.2.0"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/plugin-external-helpers": "7.2.0",
"@babel/preset-env": "^7.4.3",
"acorn": "^6.1.1",
"babel-plugin-rewire-exports": "1.0.1",
"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.2.2",
"jasmine": "^3.4.0",
"jasmine-core": "3.4.0",
"jasmine-expect": "^4.0.1",
"js-yaml": "3.13.1",
"jsdoc": "3.6.0",
"karma": "4.0.1",
"karma-babel-preprocessor": "^8.0.0",
"karma-chrome-launcher": "2.2.0",
"karma-coverage": "1.1.2",
"karma-firefox-launcher": "1.1.0",
"karma-ie-launcher": "1.0.0",
"karma-jasmine": "^2.0.1",
"karma-jasmine-matchers": "^4.0.1",
"karma-mocha-reporter": "2.2.5",
"karma-sauce-launcher": "2.0.2",
"karma-verbose-reporter": "0.0.6",
"local-web-server": "2.6.1",
"markdown": "0.5.0",
"promise-polyfill": "8.1.0",
"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": "npm install && node build.js && node build.js type=node",
"build-browser": "node build",
"build-node": "node build type=node",
"version": "npm run build && git add -A dist",
"test": "./node_modules/.bin/karma start karma.saucelabs.conf.js --single-run --verbose && for a in coverage/*; do codeclimate-test-reporter < \"$a/lcov.info\"; break; done",
"test-local": "./node_modules/.bin/karma start karma.conf.js",
"test-local-dist": "./node_modules/.bin/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",
"delete-docs": "node deletedocs.js",
"generate-docs": "./node_modules/.bin/jsdoc -c jsdoc.json --readme README.md"
}
}