scvp-ts
Version:
Server-side Certificate Validation Protocol (SCVP) in TypeScript
74 lines (73 loc) • 2.3 kB
JSON
{
"bugs": {
"email": "jonathan@wilbur.space"
},
"contributors": [
{
"email": "jonathan@wilbur.space",
"name": "Jonathan M. Wilbur",
"url": "https://github.com/JonathanWilbur"
}
],
"description": "Server-side Certificate Validation Protocol (SCVP) in TypeScript",
"devDependencies": {
"@babel/core": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@types/benchmark": "^1.0.33",
"@types/node": "^14.0.23",
"@typescript-eslint/eslint-plugin": "^3.6.1",
"@typescript-eslint/parser": "^3.6.1",
"babel-jest": "^26.1.0",
"benchmark": "^2.1.4",
"eslint": "^7.4.0",
"jest": "^26.1.0",
"jest-junit": "^11.0.1",
"npm-check-updates": "^7.0.1",
"prettier": "^2.0.5",
"prettier-plugin-organize-imports": "^1.1.1",
"sloc": "^0.2.1",
"ts-loader": "^8.0.0",
"typescript": "^3.9.6",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
},
"directories": {
"doc": "documentation",
"test": "test"
},
"files": [
"dist/node/**/*"
],
"keywords": [
"SCVP",
"Server",
"Server-side",
"Certificate",
"Validation",
"Protocol"
],
"license": "MIT",
"main": "./dist/node/index.js",
"name": "scvp-ts",
"scripts": {
"benchmark": "node ./test/benchmark.js",
"breaking-update": "npx ncu -u && npm install",
"build": "npx tsc && npx webpack",
"build-node": "npx tsc",
"build-web": "npx webpack",
"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": "0.1.0",
"dependencies": {
"asn1-ts": "^3.3.1",
"cms-ts": "^1.0.0-rc2",
"ocsp-ts": "^0.1.0",
"x500-ts": "^1.0.0-rc1"
}
}