Upgrade dependencies. (#841)

This commit is contained in:
Oleksii Trekhleb 2022-01-22 09:58:38 +01:00 committed by GitHub
parent 9bb60fa72f
commit 7d8d3977a2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 1422 additions and 2111 deletions

3485
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -2,14 +2,6 @@
"name": "javascript-algorithms-and-data-structures", "name": "javascript-algorithms-and-data-structures",
"version": "0.0.4", "version": "0.0.4",
"description": "Algorithms and data-structures implemented on JavaScript", "description": "Algorithms and data-structures implemented on JavaScript",
"main": "index.js",
"scripts": {
"lint": "eslint ./src/**",
"test": "jest",
"coverage": "npm run test -- --coverage",
"ci": "npm run lint && npm run coverage",
"prepare": "husky install"
},
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git+https://github.com/trekhleb/javascript-algorithms.git" "url": "git+https://github.com/trekhleb/javascript-algorithms.git"
@ -28,28 +20,36 @@
"interview", "interview",
"interview-preparation" "interview-preparation"
], ],
"author": "Oleksii Trekhleb (https://www.linkedin.com/in/trekhleb/)", "author": "Oleksii Trekhleb (https://trekhleb.dev)",
"license": "MIT", "license": "MIT",
"bugs": { "bugs": {
"url": "https://github.com/trekhleb/javascript-algorithms/issues" "url": "https://github.com/trekhleb/javascript-algorithms/issues"
}, },
"homepage": "https://github.com/trekhleb/javascript-algorithms#readme", "homepage": "https://github.com/trekhleb/javascript-algorithms#readme",
"main": "index.js",
"scripts": {
"lint": "eslint ./src/**",
"test": "jest",
"coverage": "npm run test -- --coverage",
"ci": "npm run lint && npm run coverage",
"prepare": "husky install"
},
"devDependencies": { "devDependencies": {
"@babel/cli": "7.15.7", "@babel/cli": "7.16.8",
"@babel/preset-env": "7.15.8", "@babel/preset-env": "7.16.11",
"@types/jest": "27.0.2", "@types/jest": "27.4.0",
"canvas": "2.8.0", "canvas": "2.9.0",
"eslint": "8.0.1", "eslint": "8.7.0",
"eslint-config-airbnb": "18.2.1", "eslint-config-airbnb": "19.0.4",
"eslint-plugin-import": "2.25.2", "eslint-plugin-import": "2.25.4",
"eslint-plugin-jest": "25.2.2", "eslint-plugin-jest": "25.7.0",
"eslint-plugin-jsx-a11y": "6.4.1", "eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-react": "7.26.1", "eslint-plugin-react": "7.28.0",
"husky": "7.0.2", "husky": "7.0.4",
"jest": "27.3.0" "jest": "27.4.7"
}, },
"engines": { "engines": {
"node": ">=12.0.0", "node": ">=14.16.0",
"npm": ">=6.9.0" "npm": ">=6.14.0"
} }
} }

View File

@ -19,7 +19,5 @@ describe('fibonacciNth', () => {
expect(fibonacciNth(73)).toBe(806515533049393); expect(fibonacciNth(73)).toBe(806515533049393);
expect(fibonacciNth(74)).toBe(1304969544928657); expect(fibonacciNth(74)).toBe(1304969544928657);
expect(fibonacciNth(75)).toBe(2111485077978050); expect(fibonacciNth(75)).toBe(2111485077978050);
expect(fibonacciNth(80)).toBe(23416728348467685);
expect(fibonacciNth(90)).toBe(2880067194370816120);
}); });
}); });