auth-server-helper/package.json
Timo Hocker a4892f6262
Some checks failed
continuous-integration/drone/push Build is failing
blacklist, gateway
2020-12-12 15:53:47 +01:00

43 lines
944 B
JSON

{
"name": "@sapphirecode/auth-server-helper",
"version": "2.0.0",
"main": "dist/index.js",
"author": {
"name": "Timo Hocker",
"email": "timo@scode.ovh"
},
"description": "authentication middleware for express",
"license": "MIT",
"devDependencies": {
"@sapphirecode/eslint-config-ts": "^1.1.27",
"@types/jasmine": "^3.6.2",
"@types/node": "^14.14.12",
"eslint": "^7.14.0",
"jasmine": "^3.6.3",
"jasmine-ts": "^0.3.0",
"nyc": "^15.1.0",
"ts-node": "^8.0.0",
"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": [
"LICENSE",
"*.js",
"*.ts",
"*.d.ts"
],
"keywords": [
"authentication",
"express",
"middleware"
],
"dependencies": {
"@sapphirecode/crypto-helper": "^1.1.62"
}
}