forked from yWorks/svg2pdf.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.34 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
{
"name": "svg2pdf.js",
"version": "1.5.0",
"description": "A javascript-only SVG to PDF conversion utility that runs in the browser leveraging jsPDF",
"main": "dist/svg2pdf.min.js",
"files": [
"src/svg2pdf.js",
"dist/svg2pdf.js",
"dist/svg2pdf.min.js",
"README.md"
],
"scripts": {
"browserify:svgpath": "browserify node_modules/svgpath/index.js -s SvgPath -o src/SvgPath.js",
"browserify": "browserify src/svg2pdf.js --debug -p licensify -s svg2pdf -o dist/svg2pdf.js",
"exorcist:svg2pdf": "browserify src/svg2pdf.js --debug -p licensify -s svg2pdf | exorcist dist/svg2pdf.js.map > dist/svg2pdf.js",
"uglify:dist": "uglifyjs -m -c --source-map \"includeSources,content='dist/svg2pdf.js.map',url='svg2pdf.min.js.map' dist/svg2pdf.min.js.map\" --comments /@license/ -o dist/svg2pdf.min.js dist/svg2pdf.js",
"build": "yarpm run browserify && yarpm run exorcist:svg2pdf && yarpm run uglify:dist",
"test": "karma start",
"test:coverage": "yarpm run browserify && karma start --coverage",
"createreferences": "node tests/utils/reference-server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yWorks/svg2pdf.js.git"
},
"keywords": [
"svg",
"pdf",
"javascript"
],
"author": {
"name": "yFiles for HTML Support Team",
"email": "[email protected]",
"url": "https://www.yworks.com/yfileshtml"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/yWorks/svg2pdf.js/issues"
},
"homepage": "https://github.com/yWorks/svg2pdf.js#readme",
"dependencies": {
"jspdf-yworks": "^2.1.1"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"browserify": "^16.2.3",
"chalk": "^2.4.2",
"chai": "^4.2.0",
"cssesc": "^3.0.0",
"exorcist": "^1.0.1",
"font-family-papandreou": "^0.2.0-patch1",
"karma": "^4.1.0",
"karma-babel-preprocessor": "^7.0.0",
"karma-browserify": "^6.0.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"karma-firefox-launcher": "^1.1.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"mocha": "^6.2.0",
"licensify": "^3.1.3",
"log-utils": "^1.0.0",
"requirejs": "^2.3.6",
"svgpath": "^2.2.2",
"uglify-js": "^3.6.0",
"watchify": "^3.11.1",
"yarpm": "^0.2.1"
}
}