No Description

package.json 1.5KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {
  2. "name": "jszip",
  3. "version": "3.2.2",
  4. "author": "Stuart Knightley <stuart@stuartk.com>",
  5. "description": "Create, read and edit .zip files with JavaScript http://stuartk.com/jszip",
  6. "scripts": {
  7. "test": "npm run test-node && npm run test-browser",
  8. "test-node": "qunit --require ./test/helpers/test-utils.js --require ./test/helpers/node-test-utils.js test/asserts/",
  9. "test-browser": "grunt build && grunt test",
  10. "lint": "grunt jshint"
  11. },
  12. "contributors": [
  13. {
  14. "name": "Franz Buchinger"
  15. },
  16. {
  17. "name": "António Afonso"
  18. },
  19. {
  20. "name": "David Duponchel"
  21. },
  22. {
  23. "name": "yiminghe"
  24. }
  25. ],
  26. "main": "./lib/index",
  27. "browser": {
  28. "readable-stream": "./lib/readable-stream-browser.js"
  29. },
  30. "repository": {
  31. "type": "git",
  32. "url": "https://github.com/Stuk/jszip.git"
  33. },
  34. "keywords": [
  35. "zip",
  36. "deflate",
  37. "inflate"
  38. ],
  39. "devDependencies": {
  40. "browserify": "~13.0.0",
  41. "grunt": "~0.4.1",
  42. "grunt-browserify": "~5.0.0",
  43. "grunt-cli": "~1.1.0",
  44. "grunt-contrib-connect": "~2.0.0",
  45. "grunt-contrib-jshint": "~1.0.0",
  46. "grunt-contrib-uglify": "~4.0.1",
  47. "grunt-saucelabs": "Stuk/grunt-saucelabs#v10.0.0",
  48. "jshint": "~2.9.1",
  49. "jszip-utils": "~0.0.2",
  50. "package-json-versionify": "1.0.2",
  51. "phantomjs-prebuilt": "2.1.15",
  52. "qunit": "~2.9.2",
  53. "tmp": "0.0.28"
  54. },
  55. "dependencies": {
  56. "lie": "~3.3.0",
  57. "pako": "~1.0.2",
  58. "readable-stream": "~2.3.6",
  59. "set-immediate-shim": "~1.0.1"
  60. },
  61. "license": "(MIT OR GPL-3.0)"
  62. }