@peculiar/asn1-android
Version:
ASN.1 schema for Android key attestation extensions, including legacy Keymaster and newer KeyMint structures.
62 lines (61 loc) • 1.94 kB
JSON
{
"name": "@peculiar/asn1-android",
"version": "2.7.0",
"description": "ASN.1 schema for Android key attestation extensions, including legacy Keymaster and newer KeyMint structures.",
"keywords": [
"asn",
"asn1",
"android",
"attestation",
"keystore",
"keymint",
"keymaster"
],
"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/android"
},
"bugs": {
"url": "https://github.com/PeculiarVentures/asn1-schema/issues"
},
"homepage": "https://github.com/PeculiarVentures/asn1-schema/tree/master/packages/android#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",
"asn1js": "^3.0.6",
"tslib": "^2.8.1"
}
}