-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #87 from caputomarcos/feature/implicit-flow-support
Feature/implicit flow support
- Loading branch information
Showing
6 changed files
with
353 additions
and
172 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "node-red-contrib-oauth2", | ||
"version": "5.2.7", | ||
"version": "6.0.0", | ||
"description": "The node-red-contrib-oauth2 is a Node-RED node that provides an OAuth2 authentication flow. This node uses the OAuth2 protocol to obtain an access token, which can be used to make authenticated API requests.", | ||
"author": "Marcos Caputo <[email protected]>", | ||
"contributors": [ | ||
|
@@ -35,7 +35,7 @@ | |
}, | ||
"dependencies": { | ||
"axios": ">=1.3.3", | ||
"json-schema": ">=0.4.0" | ||
"mocha": "^10.4.0" | ||
}, | ||
"devDependencies": { | ||
"@babel/eslint-parser": "^7.21.8", | ||
|
@@ -49,7 +49,11 @@ | |
"eslint-plugin-promise": "^6.1.1", | ||
"jsdoc": "^4.0.3", | ||
"json-schema": ">=0.4.0", | ||
"prettier": "^2.8.8" | ||
"nock": "^13.5.4", | ||
"node-red": "^3.1.9", | ||
"node-red-node-test-helper": "^0.3.4", | ||
"prettier": "^2.8.8", | ||
"should": "^13.2.3" | ||
}, | ||
"eslintConfig": { | ||
"extends": "./.eslintrc.yml" | ||
|
@@ -58,6 +62,7 @@ | |
"fix": "npx eslint ./src/. && npx eslint ./src/. --fix", | ||
"lint": "prettier --plugin-search-dir . --check ./src/. && npx eslint ./src/.", | ||
"format": "prettier --plugin-search-dir . --write ./src/.", | ||
"doc": "jsdoc -c jsdoc.json" | ||
"doc": "jsdoc -c jsdoc.json", | ||
"test": "mocha \"test/**/*_spec.js\"" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.