auth-server-helper/package.json

55 lines
1.3 KiB
JSON
Raw Normal View History

2020-03-06 11:56:10 +01:00
{
2020-05-05 19:21:42 +02:00
"name": "@sapphirecode/auth-server-helper",
2022-01-04 15:01:33 +01:00
"version": "2.1.4",
2020-12-03 10:07:49 +01:00
"main": "dist/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",
2020-12-28 14:53:14 +01:00
"@stryker-mutator/core": "^4.3.1",
"@stryker-mutator/jasmine-runner": "^4.3.1",
2020-12-03 09:54:27 +01:00
"@types/jasmine": "^3.6.2",
"@types/node": "^10.0.0",
2020-12-03 10:07:49 +01:00
"eslint": "^7.14.0",
2020-12-03 09:54:27 +01:00
"jasmine": "^3.6.3",
2021-05-10 12:26:56 +02:00
"jasmine-ts": "^0.3.3",
2020-12-03 09:54:27 +01:00
"nyc": "^15.1.0",
2020-12-28 14:53:14 +01:00
"ts-node": "^9.1.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",
2020-12-03 09:54:27 +01:00
"test": "nyc jasmine-ts --config=\"jasmine.json\"",
2020-12-30 17:21:56 +01:00
"mutate": "stryker run",
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": {
2021-01-06 16:06:03 +01:00
"@sapphirecode/crypto-helper": "^1.3.0",
2021-01-01 14:14:19 +01:00
"@sapphirecode/encoding-helper": "^1.1.0",
2020-12-13 12:26:40 +01:00
"@sapphirecode/utilities": "^1.8.8"
},
"engines": {
"node": ">=10.0.0"
2020-12-06 21:06:40 +01:00
}
2021-01-15 13:48:29 +01:00
}