@xevolab/jades
Version:
JAdES Digital Signatures compatible with the ETSI TS 119 182-1 Standard
55 lines (54 loc) • 1.3 kB
JSON
{
"name": "@xevolab/jades",
"version": "1.0.3",
"description": "JAdES Digital Signatures compatible with the ETSI TS 119 182-1 Standard",
"keywords": [
"JAdES",
"Digital",
"Signatures",
"ETSI",
"ETSI 119 182-1"
],
"repository": {
"type": "git",
"url": "https://github.com/Xevolab/jades.git"
},
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts"
},
"./schemas/*": "./src/schemas/*"
},
"files": [
"dist"
],
"scripts": {
"lint": "eslint src",
"build": "rm -rf ./dist && tsc -b ./tsconfig.cjs.json ./tsconfig.esm.json ./tsconfig.types.json && cp -r src/schemas ./dist/cjs && cp -r src/schemas ./dist/esm",
"test": "tsc test/test.ts && node test/test.js"
},
"author": "Xevolab",
"license": "MIT",
"dependencies": {
"ajv": "^8.16.0",
"ajv-formats": "^3.0.1",
"asn1js": "^3.0.5"
},
"devDependencies": {
"@types/chai": "^4.3.11",
"@types/jws": "^3.2.9",
"@types/node": "^20.3.1",
"chai": "^4.3.8",
"eslint": "^8.42.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"jose": "^5.6.2",
"jws": "^4.0.0",
"typescript": "^5.5.2"
}
}