package.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "name": "jsencrypt",
  3. "version": "3.0.0-rc.1",
  4. "description": "A Javascript library to perform OpenSSL RSA Encryption, Decryption, and Key Generation.",
  5. "license": "MIT",
  6. "main": "bin/jsencrypt.js",
  7. "scripts": {
  8. "prepublish": "node_modules/gulp/bin/gulp.js"
  9. },
  10. "contributors": [
  11. {
  12. "name": "Travis Tidwell",
  13. "email": "travis@form.io",
  14. "url": "http://github.com/travist"
  15. },
  16. {
  17. "name": "Antonio",
  18. "url": "https://github.com/zoloft"
  19. },
  20. {
  21. "name": "Julio",
  22. "url": "https://github.com/jmgaya"
  23. }
  24. ],
  25. "homepage": "http://www.travistidwell.com/jsencrypt",
  26. "repository": {
  27. "type": "git",
  28. "url": "git://github.com/travist/jsencrypt.git"
  29. },
  30. "bugs": {
  31. "url": "http://github.com/travist/jsencrypt/issues"
  32. },
  33. "devDependencies": {
  34. "expect.js": "^0.3.1",
  35. "gulp": "^3.9.1",
  36. "gulp-concat": "^2.6.1",
  37. "gulp-copy": "^1.0.1",
  38. "gulp-eslint": "^4.0.2",
  39. "gulp-insert": "^0.5.0",
  40. "gulp-rename": "^1.2.2",
  41. "gulp-tslint": "^8.1.2",
  42. "gulp-typescript": "^4.0.1",
  43. "gulp-uglify": "^3.0.0",
  44. "gulp-watch": "^5.0.0",
  45. "gulp-wrap": "^0.13.0",
  46. "mocha": "^5.0.1",
  47. "rollup": "^0.56.1",
  48. "rollup-plugin-node-resolve": "^3.0.0",
  49. "rollup-plugin-replace": "^2.0.0",
  50. "rollup-plugin-uglify": "^3.0.0",
  51. "ts-loader": "^3.2.0",
  52. "tslib": "^1.8.1",
  53. "tslint": "^5.8.0",
  54. "typescript": "^2.6.2",
  55. "webpack": "^3.10.0"
  56. },
  57. "dependencies": {},
  58. "typings": "declarations/src/index.d.ts"
  59. }