package.json 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {
  2. "name": "jsencrypt",
  3. "type": "module",
  4. "version": "3.3.1",
  5. "description": "A Javascript library to perform OpenSSL RSA Encryption, Decryption, and Key Generation.",
  6. "main": "bin/jsencrypt.js",
  7. "module": "lib/index.js",
  8. "browser": "lib/index.js",
  9. "types": "lib/index.d.ts",
  10. "dependencies": {},
  11. "devDependencies": {
  12. "@types/expect": "^24.3.0",
  13. "@types/mocha": "^10.0.0",
  14. "@types/node": "^18.11.4",
  15. "chai": "^4.3.6",
  16. "dirty-chai": "^2.0.1",
  17. "fs-jetpack": "^5.1.0",
  18. "mocha": "^10.0.0",
  19. "process": "^0.11.10",
  20. "ts-mocha": "^10.0.0",
  21. "ts-node": "^10.9.1",
  22. "typescript": "^4.2.4",
  23. "url": "^0.11.0",
  24. "webpack": "^5.35.1",
  25. "webpack-cli": "^4.6.0"
  26. },
  27. "files": [
  28. "bin",
  29. "lib"
  30. ],
  31. "scripts": {
  32. "build:dev": "tsc && tsc --project tsconfig-def.json && webpack",
  33. "build:test": "tsc && tsc --project tsconfig-def.json && webpack --config webpack.test.js",
  34. "build:prod": "tsc && tsc --project tsconfig-def.json && webpack --config webpack.prod.js",
  35. "build": "npm run build:dev && npm run build:test && npm run build:prod",
  36. "serve": "bundle exec jekyll server --config _config.build.yml",
  37. "test": "ts-mocha test/test.rsa.js"
  38. },
  39. "author": "Travis Tidwell <travis@form.io>",
  40. "contributors": [
  41. {
  42. "name": "Travis Tidwell",
  43. "email": "travis@form.io",
  44. "url": "http://github.com/travist"
  45. },
  46. {
  47. "name": "Antonio",
  48. "url": "https://github.com/zoloft"
  49. },
  50. {
  51. "name": "Julio",
  52. "url": "https://github.com/jmgaya"
  53. },
  54. {
  55. "name": "Taehyun Hwang",
  56. "url": "https://github.com/HwangTaehyun"
  57. }
  58. ],
  59. "homepage": "http://www.travistidwell.com/jsencrypt",
  60. "repository": {
  61. "type": "git",
  62. "url": "git://github.com/travist/jsencrypt.git"
  63. },
  64. "bugs": {
  65. "url": "http://github.com/travist/jsencrypt/issues"
  66. },
  67. "license": "MIT"
  68. }