package.json 2.2 KB

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