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

32 lines
787 B
JSON
Raw Normal View History

2020-03-04 13:53:23 +01:00
{
2020-03-04 21:06:58 +01:00
"name": "@scode/auth-client-helper",
2020-03-04 13:53:23 +01:00
"version": "1.0.0",
"main": "index.js",
"author": "Timo Hocker <t-hocker@web.de>",
"license": "MIT",
"devDependencies": {
2020-04-06 09:19:38 +02:00
"@scode/eslint-config": "^2.0.2",
2020-03-14 14:14:23 +01:00
"@stryker-mutator/core": "^3.0.2",
"@stryker-mutator/javascript-mutator": "^3.0.2",
2020-03-07 18:20:37 +01:00
"ava": "^3.5.0",
"eslint": "^6.8.0",
"nyc": "^15.0.0"
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-03-30 11:58:33 +02:00
"ci": "yarn && node jenkins.js",
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-03-07 18:20:37 +01:00
"@scode/consts": "^1.0.3",
"@scode/crypto-helper": "^1.1.9",
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-03-07 18:20:37 +01:00
}