-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* telemetry data removed from endpoints * #14 bugfix * deps update and lint fixes * 1.4.0 * Update CHANGELOG.md * changlog fixed * docs fixes * 1.4.1 dependencies updated
- Loading branch information
1 parent
b46e2c6
commit 738dc56
Showing
10 changed files
with
535 additions
and
402 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ tests/ | |
|
||
.editorconfig | ||
.eslintrc | ||
tsconfig.tests.json | ||
tsconfig.lint.json | ||
.DS_Store | ||
.env | ||
.env.example |
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
Large diffs are not rendered by default.
Oops, something went wrong.
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": "confluence.js", | ||
"version": "1.4.0", | ||
"version": "1.4.1", | ||
"description": "confluence.js is a powerful Node.JS/Browser module that allows you to interact with the Confluence API very easily", | ||
"author": "Vladislav Tupikin <[email protected]>", | ||
"license": "MIT", | ||
|
@@ -16,17 +16,20 @@ | |
"doc": "typedoc --name \"Confluence.js - Cloud and Server API library\" --out docs ./src/index.ts --plugin typedoc-plugin-extras --footerDate --footerTime --footerTypedocVersion --favicon https://svgshare.com/i/bVi.svg", | ||
"lint": "eslint src --ext .ts", | ||
"lint:fix": "npm run lint -- --fix", | ||
"test:unit": "ava --timeout=2m tests/unit", | ||
"test:unit": "ava tests/unit", | ||
"test:e2e": "ava --timeout=2m --fail-fast --no-worker-threads -c 1 -s tests/e2e/**/*.test.ts" | ||
}, | ||
"ava": { | ||
"extensions": [ | ||
"ts" | ||
], | ||
"require": [ | ||
"ts-node/register", | ||
"@swc-node/register", | ||
"dotenv/config" | ||
] | ||
], | ||
"environmentVariables": { | ||
"SWC_NODE_PROJECT": "./tsconfig.lint.json" | ||
} | ||
}, | ||
"keywords": [ | ||
"confluence", | ||
|
@@ -38,30 +41,30 @@ | |
"atlassian" | ||
], | ||
"devDependencies": { | ||
"@swc-node/register": "^1.4.2", | ||
"@types/express": "^4.17.13", | ||
"@types/oauth": "^0.9.1", | ||
"@types/sinon": "^10.0.11", | ||
"@typescript-eslint/eslint-plugin": "^5.17.0", | ||
"@typescript-eslint/parser": "^5.17.0", | ||
"ava": "^4.1.0", | ||
"@typescript-eslint/eslint-plugin": "^5.21.0", | ||
"@typescript-eslint/parser": "^5.21.0", | ||
"ava": "^4.2.0", | ||
"dotenv": "^16.0.0", | ||
"eslint": "^8.12.0", | ||
"eslint": "^8.14.0", | ||
"eslint-config-airbnb": "^19.0.4", | ||
"eslint-config-airbnb-typescript": "^16.2.0", | ||
"eslint-import-resolver-typescript": "^2.7.0", | ||
"eslint-plugin-import": "^2.25.4", | ||
"prettier": "^2.6.1", | ||
"prettier-plugin-jsdoc": "^0.3.36", | ||
"sinon": "^13.0.1", | ||
"ts-node": "^10.7.0", | ||
"typedoc": "^0.22.13", | ||
"eslint-config-airbnb-typescript": "^17.0.0", | ||
"eslint-import-resolver-typescript": "^2.7.1", | ||
"eslint-plugin-import": "^2.26.0", | ||
"prettier": "^2.6.2", | ||
"prettier-plugin-jsdoc": "^0.3.38", | ||
"sinon": "^13.0.2", | ||
"typedoc": "^0.22.15", | ||
"typedoc-plugin-extras": "^2.2.3", | ||
"typescript": "^4.6.3" | ||
}, | ||
"dependencies": { | ||
"atlassian-jwt": "^2.0.2", | ||
"axios": "^0.26.1", | ||
"axios": "^0.27.0", | ||
"oauth": "^0.9.15", | ||
"tslib": "^2.3.1" | ||
"tslib": "^2.4.0" | ||
} | ||
} |
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
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
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 |
---|---|---|
|
@@ -3,5 +3,6 @@ | |
"include": [ | ||
"src", | ||
"tests" | ||
] | ||
], | ||
"exclude": [] | ||
} |