auth-server-helper/package.json
Timo Hocker c7708f4bc0
All checks were successful
continuous-integration/drone/push Build is passing
fix
2022-01-05 12:35:18 +01:00

57 lines
1.4 KiB
JSON

{
"name": "@sapphirecode/auth-server-helper",
"version": "2.2.3",
"main": "dist/index.js",
"author": {
"name": "Timo Hocker",
"email": "timo@scode.ovh"
},
"repository": {
"type": "git",
"url": "https://git.scode.ovh/timo/auth-server-helper.git"
},
"bugs": "https://git.scode.ovh/timo/auth-server-helper",
"description": "authentication middleware for node http and express",
"license": "MIT",
"devDependencies": {
"@sapphirecode/eslint-config-ts": "^1.1.27",
"@stryker-mutator/core": "^4.3.1",
"@stryker-mutator/jasmine-runner": "^4.3.1",
"@types/debug": "^4.1.7",
"@types/jasmine": "^3.6.2",
"@types/node": "^10.0.0",
"eslint": "^7.14.0",
"jasmine": "^3.6.3",
"jasmine-ts": "^0.3.3",
"nyc": "^15.1.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.2"
},
"scripts": {
"lint": "eslint . --ext .js,.jsx,.ts,.tsx,.vue,.mjs",
"test": "nyc jasmine-ts --config=\"jasmine.json\"",
"mutate": "stryker run",
"compile": "tsc"
},
"files": [
"lib/**/*.ts",
"dist/**/*.js",
"dist/**/*.d.ts",
"dist/**/*.map"
],
"keywords": [
"authentication",
"express",
"middleware"
],
"dependencies": {
"@sapphirecode/crypto-helper": "^1.3.0",
"@sapphirecode/encoding-helper": "^1.1.0",
"@sapphirecode/utilities": "^1.8.8",
"debug": "^4.3.3"
},
"engines": {
"node": ">=10.0.0"
}
}