package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {
  2. "name": "crypto-es",
  3. "version": "1.2.7",
  4. "description": "A cryptography algorithms library compatible with ES6 and TypeScript",
  5. "keywords": [
  6. "typescript",
  7. "security",
  8. "crypto",
  9. "cipher",
  10. "ArrayBuffer",
  11. "TypedArray",
  12. "file",
  13. "ECMAScript",
  14. "ES6",
  15. "Hash",
  16. "MD5",
  17. "SHA1",
  18. "SHA-1",
  19. "SHA2",
  20. "SHA-2",
  21. "SHA3",
  22. "SHA-3",
  23. "SHA256",
  24. "SHA-256",
  25. "RC4",
  26. "Rabbit",
  27. "AES",
  28. "DES",
  29. "3DES",
  30. "TripleDES",
  31. "PBKDF2",
  32. "HMAC",
  33. "HEX",
  34. "Base64"
  35. ],
  36. "type": "module",
  37. "main": "lib/index.js",
  38. "types": "lib/index.d.ts",
  39. "files": [
  40. "lib"
  41. ],
  42. "scripts": {
  43. "test": "jest",
  44. "debug": "node --experimental-modules __tests__/debug.js"
  45. },
  46. "repository": {
  47. "type": "git",
  48. "url": "git+https://github.com/entronad/crypto-es.git"
  49. },
  50. "author": "LIN Chen",
  51. "license": "MIT",
  52. "bugs": {
  53. "url": "https://github.com/entronad/crypto-es/issues"
  54. },
  55. "homepage": "https://github.com/entronad/crypto-es#readme",
  56. "devDependencies": {
  57. "@babel/core": "^7.7.7",
  58. "@babel/plugin-transform-modules-commonjs": "^7.7.5",
  59. "babel-jest": "^24.9.0",
  60. "eslint": "^6.8.0",
  61. "eslint-config-airbnb-base": "^14.0.0",
  62. "eslint-plugin-import": "^2.19.1",
  63. "jest": "^24.9.0"
  64. },
  65. "jest": {
  66. "testRegex": "(/__tests__/.*\\.test\\.js)$"
  67. }
  68. }