package.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "@peculiar/asn1-rsa",
  3. "version": "2.6.0",
  4. "description": "ASN.1 schema of `RSA Cryptography Specifications Version 2.2` (RFC8017)",
  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/rsa#readme",
  14. "keywords": [
  15. "asn"
  16. ],
  17. "author": "PeculiarVentures, LLC",
  18. "license": "MIT",
  19. "main": "build/cjs/index.js",
  20. "module": "build/es2015/index.js",
  21. "types": "build/types/index.d.ts",
  22. "publishConfig": {
  23. "access": "public"
  24. },
  25. "scripts": {
  26. "clear": "rimraf build",
  27. "build": "npm run build:module && npm run build:types",
  28. "build:module": "npm run build:cjs && npm run build:es2015",
  29. "build:cjs": "tsc -p tsconfig.compile.json --removeComments --module commonjs --outDir build/cjs",
  30. "build:es2015": "tsc -p tsconfig.compile.json --removeComments --module ES2015 --outDir build/es2015",
  31. "prebuild:types": "rimraf build/types",
  32. "build:types": "tsc -p tsconfig.compile.json --outDir build/types --declaration --emitDeclarationOnly",
  33. "rebuild": "npm run clear && npm run build"
  34. },
  35. "dependencies": {
  36. "@peculiar/asn1-schema": "^2.6.0",
  37. "@peculiar/asn1-x509": "^2.6.0",
  38. "asn1js": "^3.0.6",
  39. "tslib": "^2.8.1"
  40. },
  41. "gitHead": "84379a0671b1312b01fd3b9f1ef038d10560ea4a"
  42. }