package.json 909 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "jspdf",
  3. "version": "1.3.2",
  4. "homepage": "https://github.com/mrrio/jspdf",
  5. "description": "PDF Document creation from JavaScript",
  6. "main": "dist/jspdf.debug.js",
  7. "files": [
  8. "dist/jspdf.debug.js",
  9. "dist/jspdf.min.js",
  10. "README.md"
  11. ],
  12. "keywords": [
  13. "pdf"
  14. ],
  15. "license": "MIT",
  16. "repository": {
  17. "type": "git",
  18. "url": "https://github.com/MrRio/jsPDF.git"
  19. },
  20. "dependencies": {
  21. "adler32cs": "github:chick307/adler32cs.js",
  22. "cf-blob.js": "0.0.1",
  23. "filesaver.js": "github:andyinabox/FileSaver.js"
  24. },
  25. "devDependencies": {
  26. "babel-preset-es2015-rollup": "^1.1.1",
  27. "local-web-server": "^1.2.6",
  28. "rollup": "^0.31.1",
  29. "rollup-plugin-babel": "^2.4.0",
  30. "uglify-js": "^2.6.2"
  31. },
  32. "scripts": {
  33. "start": "ws",
  34. "build": "npm install && bower install && node build.js",
  35. "version": "npm run build && git add -A dist"
  36. }
  37. }