Initial commit

This commit is contained in:
Leandro Costa 2023-01-26 18:33:18 -03:00
parent ec65720e99
commit 53c3fbffe6
8 changed files with 2604 additions and 0 deletions

23
package.json Normal file
View file

@ -0,0 +1,23 @@
{
"name": "lhisp-oauth-client",
"version": "1.0.0",
"main": "src/index",
"types": "src/index.d.ts",
"repository": "git@bitbucket.org:leandro_costa/lhisp-oauth-client.git",
"author": "Leandro Costa <contato@leandrocosta.pro.br>",
"license": "MIT",
"scripts": {
"build": "tsc",
"test": "jest",
"test:watch": "jest --watchAll"
},
"devDependencies": {
"@types/node": "^18.11.18",
"jest": "^29.4.1",
"ts-jest": "^29.0.5",
"typescript": "^4.9.4"
},
"dependencies": {
"axios": "^1.2.5"
}
}