package.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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.8",
  17. "@types/jest": "^29.5.14",
  18. "@types/node": "^22.13.14",
  19. "asn1-test-suite": "^1.0.2",
  20. "eslint": "^9.23.0",
  21. "jest": "^29.7.0",
  22. "rollup": "^4.37.0",
  23. "rollup-plugin-dts": "^6.2.1",
  24. "rollup-plugin-node-resolve": "^5.2.0",
  25. "rollup-plugin-typescript2": "^0.36.0",
  26. "ts-jest": "^29.3.0",
  27. "typescript": "^5.8.2",
  28. "typescript-eslint": "^8.28.0"
  29. },
  30. "repository": {
  31. "type": "git",
  32. "url": "git://github.com/PeculiarVentures/asn1.js.git"
  33. },
  34. "dependencies": {
  35. "pvtsutils": "^1.3.6",
  36. "pvutils": "^1.1.3",
  37. "tslib": "^2.8.1"
  38. },
  39. "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",
  40. "keywords": [
  41. "asn1",
  42. "parser",
  43. "asn.1",
  44. "ber",
  45. "der",
  46. "sequence",
  47. "set",
  48. "bitstring",
  49. "octetstring",
  50. "utctime",
  51. "utf8string",
  52. "bmpstring",
  53. "universalstring",
  54. "generalizedtime"
  55. ],
  56. "main": "build/index.js",
  57. "module": "build/index.es.js",
  58. "types": "build/index.d.ts",
  59. "name": "asn1js",
  60. "files": [
  61. "build",
  62. "LICENSE",
  63. "README.md"
  64. ],
  65. "scripts": {
  66. "build": "rollup -c",
  67. "test": "jest",
  68. "prepublishOnly": "npm run build",
  69. "lint": "eslint . --ext .ts",
  70. "lint:fix": "eslint --fix . --ext .ts",
  71. "coverage": "jest --coverage"
  72. },
  73. "version": "3.0.7",
  74. "license": "BSD-3-Clause",
  75. "devEngines": {
  76. "packageManager": {
  77. "name": "npm",
  78. "version": ">=10",
  79. "onFail": "error"
  80. }
  81. }
  82. }