package.json 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. {
  2. "_from": "jsencrypt@^3.3.2",
  3. "_id": "jsencrypt@3.5.4",
  4. "_inBundle": false,
  5. "_integrity": "sha512-kNjfYEMNASxrDGsmcSQh/rUTmcoRfSUkxnAz+MMywM8jtGu+fFEZ3nJjHM58zscVnwR0fYmG9sGkTDjqUdpiwA==",
  6. "_location": "/jsencrypt",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "range",
  10. "registry": true,
  11. "raw": "jsencrypt@^3.3.2",
  12. "name": "jsencrypt",
  13. "escapedName": "jsencrypt",
  14. "rawSpec": "^3.3.2",
  15. "saveSpec": null,
  16. "fetchSpec": "^3.3.2"
  17. },
  18. "_requiredBy": [
  19. "#DEV:/"
  20. ],
  21. "_resolved": "https://registry.npmmirror.com/jsencrypt/-/jsencrypt-3.5.4.tgz",
  22. "_shasum": "8db335ab164359449dd200d120f125f459476b25",
  23. "_spec": "jsencrypt@^3.3.2",
  24. "_where": "C:\\Users\\Administrator\\Desktop\\crmeb5.0\\template\\admin",
  25. "author": {
  26. "name": "Travis Tidwell",
  27. "email": "travis@form.io"
  28. },
  29. "browser": "lib/index.js",
  30. "browserslist": [
  31. "last 1 version",
  32. "> 1%",
  33. "ie 11",
  34. "chrome >= 30",
  35. "edge >= 79",
  36. "firefox >= 63",
  37. "safari >= 11"
  38. ],
  39. "bugs": {
  40. "url": "http://github.com/travist/jsencrypt/issues"
  41. },
  42. "bundleDependencies": false,
  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. "dependencies": {},
  63. "deprecated": false,
  64. "description": "A Javascript library to perform OpenSSL RSA Encryption, Decryption, and Key Generation.",
  65. "devDependencies": {
  66. "@babel/core": "^7.28.0",
  67. "@babel/preset-env": "^7.28.0",
  68. "@babel/preset-typescript": "^7.27.1",
  69. "@babel/register": "^7.27.1",
  70. "@types/expect": "^24.3.2",
  71. "@types/mocha": "^10.0.10",
  72. "@types/node": "^24.2.1",
  73. "chai": "4.3.6",
  74. "dirty-chai": "^2.0.1",
  75. "fs-jetpack": "^5.1.0",
  76. "mocha": "^11.7.1",
  77. "process": "^0.11.10",
  78. "ts-mocha": "^11.1.0",
  79. "ts-node": "^10.9.2",
  80. "typescript": "^5.9.2",
  81. "url": "^0.11.4",
  82. "webpack": "^5.101.0",
  83. "webpack-cli": "^6.0.1"
  84. },
  85. "exports": {
  86. ".": {
  87. "import": "./lib/index.js",
  88. "require": "./bin/jsencrypt.min.js",
  89. "browser": "./lib/index.js",
  90. "types": "./lib/index.d.ts"
  91. },
  92. "./package.json": "./package.json"
  93. },
  94. "files": [
  95. "bin",
  96. "lib"
  97. ],
  98. "homepage": "http://www.travistidwell.com/jsencrypt",
  99. "license": "MIT",
  100. "main": "bin/jsencrypt.min.js",
  101. "module": "lib/index.js",
  102. "name": "jsencrypt",
  103. "repository": {
  104. "type": "git",
  105. "url": "git://github.com/travist/jsencrypt.git"
  106. },
  107. "scripts": {
  108. "build": "npm run build:dev && npm run build:test && npm run build:prod",
  109. "build:dev": "tsc && tsc --project tsconfig-def.json && webpack",
  110. "build:prod": "tsc && tsc --project tsconfig-def.json && webpack --config webpack.prod.js",
  111. "build:test": "tsc && tsc --project tsconfig-def.json && webpack --config webpack.test.js",
  112. "build:validate": "npm run build && npm run validate:build",
  113. "prepublishOnly": "npm run build:validate",
  114. "serve": "bundle exec jekyll clean && bundle exec jekyll server --config _config.build.yml",
  115. "test": "node test/run-all-tests.js",
  116. "test:examples": "node test/run-examples-tests.js",
  117. "test:mocha": "ts-mocha test/index.js",
  118. "validate:build": "node test/validate-build.js",
  119. "validate:cdn": "echo 'Open http://localhost:4001/test/cdn-validation.html to test CDN compatibility'"
  120. },
  121. "sideEffects": false,
  122. "types": "lib/index.d.ts",
  123. "version": "3.5.4"
  124. }