| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- {
- "name": "@peculiar/asn1-ecc",
- "version": "2.7.0",
- "description": "ASN.1 schema for elliptic-curve private keys and related identifiers defined in RFC 5915, RFC 5480, and RFC 3279.",
- "keywords": [
- "asn",
- "asn1",
- "ecc",
- "ec",
- "elliptic-curve",
- "rfc5915",
- "rfc5480",
- "rfc3279"
- ],
- "author": "PeculiarVentures, LLC",
- "license": "MIT",
- "files": [
- "build/**/*.{js,d.ts}",
- "build/es2015/package.json",
- "LICENSE",
- "README.md"
- ],
- "main": "build/cjs/index.js",
- "module": "build/es2015/index.js",
- "types": "build/types/index.d.ts",
- "exports": {
- ".": {
- "types": "./build/types/index.d.ts",
- "import": "./build/es2015/index.js",
- "require": "./build/cjs/index.js"
- },
- "./package.json": "./package.json"
- },
- "publishConfig": {
- "access": "public"
- },
- "repository": {
- "type": "git",
- "url": "https://github.com/PeculiarVentures/asn1-schema",
- "directory": "packages/ecc"
- },
- "bugs": {
- "url": "https://github.com/PeculiarVentures/asn1-schema/issues"
- },
- "homepage": "https://github.com/PeculiarVentures/asn1-schema/tree/master/packages/ecc#readme",
- "scripts": {
- "clear": "rimraf build",
- "build": "npm run build:module && npm run build:types",
- "build:module": "npm run build:cjs && npm run build:es2015",
- "build:cjs": "tsc -p tsconfig.compile.json --removeComments --module commonjs --outDir build/cjs",
- "build:es2015": "tsc -p tsconfig.compile.json --removeComments --module ES2015 --outDir build/es2015",
- "postbuild:es2015": "node ../../scripts/prepare_esm_package.mjs build/es2015",
- "prebuild:types": "rimraf build/types",
- "build:types": "tsc -p tsconfig.compile.json --outDir build/types --declaration --emitDeclarationOnly",
- "rebuild": "npm run clear && npm run build"
- },
- "dependencies": {
- "@peculiar/asn1-schema": "^2.7.0",
- "@peculiar/asn1-x509": "^2.7.0",
- "asn1js": "^3.0.6",
- "tslib": "^2.8.1"
- }
- }
|