forked from parallax/jsPDF
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.71 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
{
"name": "jspdf",
"version": "1.3.4",
"homepage": "https://github.com/mrrio/jspdf",
"description": "PDF Document creation from JavaScript",
"main": "dist/jspdf.debug.js",
"files": [
"dist/jspdf.debug.js",
"dist/jspdf.min.js",
"README.md"
],
"keywords": [
"pdf"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/MrRio/jsPDF.git"
},
"dependencies": {
"adler32cs": "github:chick307/adler32cs.js",
"cf-blob.js": "0.0.1",
"filesaver.js": "github:andyinabox/FileSaver.js"
},
"devDependencies": {
"babel-preset-es2015": "6.16.0",
"babel-preset-es2015-rollup": "1.2.0",
"codeclimate-test-reporter": "^0.4.0",
"diff": "3.0.0",
"docdash": "0.4.0",
"jasmine": "2.5.2",
"js-yaml": "3.6.1",
"jsdoc": "3.4.2",
"karma": "1.3.0",
"karma-babel-preprocessor": "6.0.1",
"karma-chrome-launcher": "2.0.0",
"karma-coverage": "1.1.1",
"karma-firefox-launcher": "1.0.0",
"karma-jasmine": "1.0.2",
"karma-mocha-reporter": "^2.2.0",
"karma-sauce-launcher": "1.0.0",
"local-web-server": "1.2.6",
"markdown": "^0.5.0",
"pdfjs-dist": "1.6.283",
"rollup": "0.36.3",
"rollup-plugin-babel": "2.6.1",
"uglify-js": "2.7.3"
},
"scripts": {
"start": "ws",
"build": "npm install && bower install && node build.js",
"version": "npm run build && git add -A dist",
"test": "./node_modules/.bin/karma start saucelabs.karma.conf.js --single-run && for a in coverage/*; do codeclimate-test-reporter < \"$a/lcov.info\"; break; done",
"test-local": "node tests/utils/reference-server.js & karma start",
"generate-docs": "node_modules/.bin/jsdoc -c jsdoc.json --readme README.md"
}
}