pkcs-ts
Version:
PKCS #1 through #15 (Except #11) - Private and Public Keys, Certificates, and More
74 lines (73 loc) • 2.29 kB
JSON
{
"bugs": {
"email": "jonathan@wilbur.space"
},
"contributors": [
{
"email": "jonathan@wilbur.space",
"name": "Jonathan M. Wilbur",
"url": "https://github.com/JonathanWilbur"
}
],
"description": "PKCS #1 through #15 (Except #11) - Private and Public Keys, Certificates, and More",
"devDependencies": {
"@babel/core": "^7.12.13",
"@babel/preset-env": "^7.12.13",
"@babel/preset-typescript": "^7.12.13",
"@types/benchmark": "^2.1.0",
"@types/node": "^14.14.25",
"@types/node-forge": "^0.9.7",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"babel-jest": "^26.6.3",
"benchmark": "^2.1.4",
"eslint": "^7.19.0",
"jest": "^26.6.3",
"jest-junit": "^12.0.0",
"node-forge": "^0.10.0",
"npm-check-updates": "^11.1.1",
"prettier": "^2.2.1",
"prettier-plugin-organize-imports": "^1.1.1",
"sloc": "^0.2.1",
"ts-loader": "^8.0.17",
"typescript": "^4.1.5"
},
"directories": {
"doc": "documentation",
"test": "test"
},
"files": [
"dist/node/**/*"
],
"keywords": [
"PKCS",
"PKCS7",
"PKCS12",
"PFX",
"Crypto",
"Key"
],
"license": "MIT",
"main": "./dist/node/index.js",
"name": "pkcs-ts",
"scripts": {
"benchmark": "node ./test/benchmark.js",
"breaking-update": "npx ncu -u && npm install",
"build": "npx tsc",
"build-node": "npx tsc",
"clean": "rm -rf dist; mkdir -p dist",
"line-count": "npx sloc source",
"lint": "npx eslint --config .eslintrc.yml './source/**/*.ts' || true",
"prettify": "npx prettier './source/**/*.ts' --write",
"test": "npx jest --ci --reporters=default --reporters=jest-junit --coverage"
},
"types": "./dist/node/index.d.ts",
"version": "5.0.1",
"dependencies": {
"ansi-x9-42": "^1.0.4",
"ansi-x9-62": "^1.0.7",
"asn1-ts": "^5.0.3",
"cms-ts": "^2.0.2",
"x500-ts": "^3.2.8"
}
}