package.json 1.5 KB

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