package.json 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. {
  2. "author": {
  3. "email": "yury@strozhevsky.com",
  4. "name": "Yury Strozhevsky"
  5. },
  6. "contributors": [
  7. {
  8. "email": "rmh@unmitigatedrisk.com",
  9. "name": "Ryan Hurst"
  10. }
  11. ],
  12. "engines": {
  13. "node": ">=12.0.0"
  14. },
  15. "devDependencies": {
  16. "@peculiar/eslint-config-base": "^0.2.9",
  17. "@types/jest": "^30.0.0",
  18. "@types/node": "^25.6.0",
  19. "asn1-test-suite": "^1.0.2",
  20. "eslint": "^10.2.1",
  21. "jest": "^30.3.0",
  22. "rollup": "^4.60.2",
  23. "rollup-plugin-dts": "^6.4.1",
  24. "rollup-plugin-typescript2": "^0.37.0",
  25. "ts-jest": "^29.4.9",
  26. "typescript": "^5.6.3",
  27. "typescript-eslint": "^8.58.2"
  28. },
  29. "repository": {
  30. "type": "git",
  31. "url": "https://github.com/PeculiarVentures/ASN1.js"
  32. },
  33. "dependencies": {
  34. "pvtsutils": "^1.3.6",
  35. "pvutils": "^1.1.5",
  36. "tslib": "^2.8.1"
  37. },
  38. "description": "asn1js is a pure JavaScript library implementing this standard. ASN.1 is the basis of all X.509 related data structures and numerous other protocols used on the web",
  39. "keywords": [
  40. "asn1",
  41. "parser",
  42. "asn.1",
  43. "ber",
  44. "der",
  45. "sequence",
  46. "set",
  47. "bitstring",
  48. "octetstring",
  49. "utctime",
  50. "utf8string",
  51. "bmpstring",
  52. "universalstring",
  53. "generalizedtime"
  54. ],
  55. "main": "build/index.js",
  56. "module": "build/index.es.js",
  57. "types": "build/index.d.ts",
  58. "name": "asn1js",
  59. "files": [
  60. "build",
  61. "LICENSE",
  62. "README.md"
  63. ],
  64. "scripts": {
  65. "build": "rollup -c",
  66. "test": "jest",
  67. "prepublishOnly": "npm run build",
  68. "lint": "eslint . --ext .ts",
  69. "lint:fix": "eslint --fix . --ext .ts",
  70. "coverage": "jest --coverage"
  71. },
  72. "version": "3.0.10",
  73. "license": "BSD-3-Clause",
  74. "devEngines": {
  75. "runtime": {
  76. "name": "node",
  77. "version": ">=24.5.0",
  78. "onFail": "warn"
  79. },
  80. "packageManager": {
  81. "name": "npm",
  82. "version": "11.7.0",
  83. "onFail": "warn"
  84. }
  85. }
  86. }