@estos/asn1ts
Version:
ASN1.ts is a cross platform ASN1 library written in typescript. It supports encoding and (schema supported) decoding of ber encoded asn1 structures.
96 lines (95 loc) • 2.26 kB
JSON
{
"name": "@estos/asn1ts",
"version": "3.2.3",
"license": "BSD-3-Clause",
"author": {
"name": "estos GmbH",
"email": "info@estos.de",
"url": "https://www.estos.de"
},
"contributors": [
{
"email": "jan@estos.de",
"name": "Jan Fellner"
},
{
"email": "yury@strozhevsky.com",
"name": "Yury Strozhevsky"
},
{
"email": "rmh@unmitigatedrisk.com",
"name": "Ryan Hurst"
}
],
"engines": {
"node": ">=18"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.3",
"@types/mocha": "^10.0.1",
"@types/node": "^20.8.6",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"asn1-test-suite": "^1.0.2",
"eslint": "^8.31.0",
"eslint-plugin-deprecation": "^2.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-unused-imports": "^3.0.0",
"mocha": "^10.2.0",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"rollup": "^4.1.4",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-typescript2": "^0.36.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"jest": "^29.7.0",
"tslib": "^2.4.1"
},
"repository": {
"type": "git",
"url": "git://github.com/ESTOS/ASN1.ts.git"
},
"dependencies": {
"pvtsutils": "^1.3.2",
"pvutils": "^1.1.3"
},
"description": "ASN1.ts is a cross platform ASN1 library written in typescript. It supports encoding and (schema supported) decoding of ber encoded asn1 structures.",
"keywords": [
"asn1",
"encoder",
"decoder",
"schema",
"validation",
"parser",
"asn.1",
"ber",
"sequence",
"set",
"bitstring",
"octetstring",
"utctime",
"utf8string",
"bmpstring",
"universalstring",
"generalizedtime"
],
"main": "build/index.js",
"module": "build/index.es.js",
"types": "build/index.d.ts",
"files": [
"build",
"LICENSE",
"README.md"
],
"scripts": {
"build": "rollup -c",
"test": "mocha",
"prepublishOnly": "npm run build",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint --fix . --ext .ts",
"relint": "run-s lintclear lint",
"lintclear": "del /s .eslintcache",
"coverage": "nyc npm test"
}
}