package.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "@peculiar/asn1-x509",
  3. "version": "2.6.0",
  4. "description": "ASN.1 schema of `Internet X.509 Public Key Infrastructure Certificate and Certificate Revocation List (CRL) Profile` (RFC5280)",
  5. "files": [
  6. "build/**/*.{js,d.ts}",
  7. "LICENSE",
  8. "README.md"
  9. ],
  10. "bugs": {
  11. "url": "https://github.com/PeculiarVentures/asn1-schema/issues"
  12. },
  13. "homepage": "https://github.com/PeculiarVentures/asn1-schema/tree/master/packages/x509#readme",
  14. "keywords": [
  15. "asn",
  16. "rfc",
  17. "rfc5280",
  18. "x509"
  19. ],
  20. "author": "PeculiarVentures, LLC",
  21. "license": "MIT",
  22. "main": "build/cjs/index.js",
  23. "module": "build/es2015/index.js",
  24. "types": "build/types/index.d.ts",
  25. "publishConfig": {
  26. "access": "public"
  27. },
  28. "scripts": {
  29. "clear": "rimraf build",
  30. "build": "npm run build:module && npm run build:types",
  31. "build:module": "npm run build:cjs && npm run build:es2015",
  32. "build:cjs": "tsc -p tsconfig.compile.json --removeComments --module commonjs --outDir build/cjs",
  33. "build:es2015": "tsc -p tsconfig.compile.json --removeComments --module ES2015 --outDir build/es2015",
  34. "prebuild:types": "rimraf build/types",
  35. "build:types": "tsc -p tsconfig.compile.json --outDir build/types --declaration --emitDeclarationOnly",
  36. "rebuild": "npm run clear && npm run build"
  37. },
  38. "dependencies": {
  39. "@peculiar/asn1-schema": "^2.6.0",
  40. "asn1js": "^3.0.6",
  41. "pvtsutils": "^1.3.6",
  42. "tslib": "^2.8.1"
  43. },
  44. "gitHead": "84379a0671b1312b01fd3b9f1ef038d10560ea4a"
  45. }