auth-server-helper/package.json

59 lines
1.4 KiB
JSON
Raw Permalink Normal View History

2020-03-06 11:56:10 +01:00
{
2020-05-05 19:21:42 +02:00
"name": "@sapphirecode/auth-server-helper",
2023-02-09 11:58:10 +01:00
"version": "4.1.1",
2022-08-09 08:53:17 +02:00
"main": "dist/lib/index.js",
2020-07-19 13:56:06 +02:00
"author": {
"name": "Timo Hocker",
"email": "timo@scode.ovh"
2021-05-10 12:26:56 +02:00
},
2021-01-15 13:48:29 +01:00
"repository": {
"type": "git",
"url": "https://git.scode.ovh/timo/auth-server-helper.git"
2020-07-19 13:56:06 +02:00
},
2021-01-15 13:48:29 +01:00
"bugs": "https://git.scode.ovh/timo/auth-server-helper",
"description": "authentication middleware for node http and express",
2020-12-03 09:54:27 +01:00
"license": "MIT",
2020-03-06 11:56:10 +01:00
"devDependencies": {
2020-12-03 09:54:27 +01:00
"@sapphirecode/eslint-config-ts": "^1.1.27",
2022-08-08 15:52:56 +02:00
"@stryker-mutator/core": "^6.1.2",
"@stryker-mutator/jasmine-runner": "^6.1.2",
2022-01-05 12:32:04 +01:00
"@types/debug": "^4.1.7",
2022-08-08 15:52:56 +02:00
"@types/jasmine": "^4.0.3",
"@types/node": "^18.6.4",
"eslint": "^8.21.0",
"jasmine": "^4.3.0",
2020-12-03 09:54:27 +01:00
"nyc": "^15.1.0",
2022-08-08 15:52:56 +02:00
"ts-node": "^10.9.1",
2020-12-03 09:54:27 +01:00
"typescript": "^4.1.2"
2020-03-06 11:56:10 +01:00
},
"scripts": {
2020-04-14 14:59:26 +02:00
"lint": "eslint . --ext .js,.jsx,.ts,.tsx,.vue,.mjs",
2022-08-08 15:52:56 +02:00
"pretest": "yarn compile",
2022-08-08 16:10:33 +02:00
"test": "nyc jasmine --config=\"jasmine.json\"",
2020-12-30 17:21:56 +01:00
"mutate": "stryker run",
2022-08-08 15:52:56 +02:00
"precompile": "rm -rf dist",
2020-12-03 09:54:27 +01:00
"compile": "tsc"
2020-05-03 17:06:39 +02:00
},
"files": [
2021-01-06 12:17:04 +01:00
"lib/**/*.ts",
"dist/**/*.js",
"dist/**/*.d.ts",
"dist/**/*.map"
2020-07-19 13:56:06 +02:00
],
"keywords": [
"authentication",
"express",
"middleware"
2020-12-06 21:06:40 +01:00
],
"dependencies": {
2022-08-08 15:52:56 +02:00
"@sapphirecode/crypto-helper": "^2.0.0",
2021-01-01 14:14:19 +01:00
"@sapphirecode/encoding-helper": "^1.1.0",
2022-01-05 12:32:04 +01:00
"@sapphirecode/utilities": "^1.8.8",
2022-08-08 15:52:56 +02:00
"debug": "^4.3.3",
"ioredis": "^5.2.2"
},
"engines": {
"node": ">=10.0.0"
2020-12-06 21:06:40 +01:00
}
2022-08-27 16:39:07 +02:00
}