Skip to content

Commit

Permalink
Merge pull request #120 from pliancy/fix/update-depends
Browse files Browse the repository at this point in the history
fix: update dependencies
  • Loading branch information
santese authored May 29, 2024
2 parents 8e5895e + 0aab373 commit 67b7f38
Show file tree
Hide file tree
Showing 4 changed files with 1,193 additions and 1,160 deletions.
4 changes: 3 additions & 1 deletion .github/renovate.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
{
"extends": ["github>pliancy/.github"]
"extends": [
"github>pliancy/.github"
]
}
3 changes: 0 additions & 3 deletions jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,4 @@ module.exports = {
},
testRegex: '(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$',
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node'],
moduleNameMapper: {
axios: 'axios/dist/node/axios.cjs',
},
}
32 changes: 16 additions & 16 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,29 +6,29 @@
}
},
"dependencies": {
"axios": "1.6.7",
"axios": "1.7.2",
"cheerio": "1.0.0-rc.12",
"http-cookie-agent": "^5.0.4",
"tough-cookie": "^4.1.3"
"http-cookie-agent": "6.0.5",
"tough-cookie": "4.1.4"
},
"description": "Library for managing things against the undocumented egnyte resellers API.",
"devDependencies": {
"@pliancy/eslint-config-ts": "1.1.0",
"@pliancy/eslint-config-ts": "1.1.1",
"@pliancy/semantic-release-config-npm": "2.2.0",
"@types/jest": "26.0.24",
"@types/node": "14.18.63",
"@types/tough-cookie": "^4.0.5",
"@types/jest": "29.5.12",
"@types/node": "20.12.13",
"@types/tough-cookie": "4.0.5",
"commitizen": "4.3.0",
"cpy-cli": "^5.0.0",
"concurrently": "8.2.2",
"cpy-cli": "5.0.0",
"cz-conventional-changelog": "3.3.0",
"husky": "8.0.3",
"jest": "27.5.1",
"npm-run-all2": "5.0.0",
"husky": "9.0.11",
"jest": "29.7.0",
"pinst": "3.0.0",
"rimraf": "3.0.2",
"ts-jest": "27.1.5",
"rimraf": "5.0.7",
"ts-jest": "29.1.4",
"ts-node": "10.9.2",
"typescript": "4.9.5"
"typescript": "5.4.5"
},
"homepage": "https://github.com/pliancy/egnyte-resellers-node",
"keywords": [
Expand All @@ -44,13 +44,13 @@
"url": "https://github.com/pliancy/egnyte-resellers-node"
},
"scripts": {
"build": "run-s -l clean test tsc copy",
"build": "yarn clean && yarn test && yarn tsc && yarn copy",
"build:check": "tsc --noEmit",
"clean": "rimraf coverage dist tmp",
"copy": "pinst --disable && cpy package.json dist && cpy README.md dist && pinst --enable",
"lint": "eslint \"src/**/*.ts\" --fix",
"postinstall": "husky install",
"qa": "run-s -l lint test clean build:check",
"qa": "concurrently 'yarn lint' 'yarn test' 'yarn clean' 'yarn build:check'",
"semantic-release": "semantic-release",
"test": "jest",
"tsc": "tsc -p tsconfig.build.json"
Expand Down
Loading

0 comments on commit 67b7f38

Please sign in to comment.