node-jws-file-provider
Version:
File Provider for node-jws handling signatures/verification using file-based keys
55 lines (54 loc) • 1.55 kB
JSON
{
"name": "node-jws-file-provider",
"version": "0.1.4",
"description": "File Provider for node-jws handling signatures/verification using file-based keys",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc -p .",
"lint": "eslint 'src/**/*.{js,ts}'",
"prepare": "npm run build",
"prepublishOnly": "npm run lint",
"version": "git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/grzegorzjudas/node-jws.git"
},
"keywords": [
"jws",
"jwt",
"jsonwebtoken",
"cloud",
"kms",
"signature"
],
"author": "grzegorzjudas",
"license": "MIT",
"bugs": {
"url": "https://github.com/grzegorzjudas/node-jws/issues"
},
"homepage": "https://github.com/grzegorzjudas/node-jws#readme",
"files": [
"lib/",
"README.md",
"LICENSE"
],
"devDependencies": {
"@types/node": "^14.11.2",
"@typescript-eslint/eslint-plugin": "^4.3.0",
"@typescript-eslint/parser": "^4.3.0",
"eslint": "^7.10.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"typescript": "^4.0.3"
},
"dependencies": {
"jose": "^2.0.2",
"node-jws": "^0.1.4"
}
}