This repository has been archived on 2021-04-12. You can view files and clone it, but cannot push or open issues or pull requests.
auth-client-helper/package.json

44 lines
1.1 KiB
JSON
Raw Normal View History

2020-03-04 13:53:23 +01:00
{
2020-05-05 19:21:19 +02:00
"name": "@sapphirecode/auth-client-helper",
"version": "1.1.1",
2020-03-04 13:53:23 +01:00
"main": "index.js",
2020-07-19 14:01:17 +02:00
"author": {
"name": "Timo Hocker",
"email": "timo@scode.ovh"
},
"bugs": "https://redmine.scode.ovh/projects/auth-client-helper",
2020-03-04 13:53:23 +01:00
"license": "MIT",
2020-05-17 17:31:15 +02:00
"description": "client helper to authenticate on servers using the auth-server-helper",
"repository": {
"type": "git",
2020-07-19 14:01:17 +02:00
"url": "https://git.scode.ovh:timo/auth-client-helper.git"
2020-05-17 17:31:15 +02:00
},
2020-03-04 13:53:23 +01:00
"devDependencies": {
2020-05-17 17:31:15 +02:00
"@sapphirecode/eslint-config": "^2.1.4",
"@stryker-mutator/core": "^3.2.3",
"@stryker-mutator/javascript-mutator": "^3.2.3",
"ava": "^3.8.2",
"eslint": "^7.0.0",
"nyc": "^15.0.1"
2020-03-04 13:53:23 +01:00
},
"scripts": {
2020-04-14 14:59:02 +02:00
"lint": "eslint . --ext .js,.jsx,.ts,.tsx,.vue,.mjs",
2020-03-07 18:20:37 +01:00
"test": "nyc ava",
2020-05-04 20:38:18 +02:00
"mutate": "stryker run",
"compile": "tsc --allowJs --declaration --emitDeclarationOnly index.js"
2020-03-04 13:53:23 +01:00
},
"dependencies": {
2020-05-17 17:31:15 +02:00
"@sapphirecode/consts": "^1.1.18",
"@sapphirecode/crypto-helper": "^1.1.44",
2020-03-04 21:02:59 +01:00
"node-fetch": "^2.6.0"
2020-05-03 17:05:57 +02:00
},
"files": [
"LICENSE",
"index.js"
2020-07-19 14:01:17 +02:00
],
"keywords": [
"authentication",
"helper",
"auth-server-helper"
2020-05-03 17:05:57 +02:00
]
}