Skip to content

Commit 7d8d397

Browse files
authoredJan 22, 2022
Upgrade dependencies. (trekhleb#841)
1 parent 9bb60fa commit 7d8d397

File tree

3 files changed

+1423
-2112
lines changed

3 files changed

+1423
-2112
lines changed
 

‎package-lock.json

+1,400-2,087
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+23-23
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,6 @@
22
"name": "javascript-algorithms-and-data-structures",
33
"version": "0.0.4",
44
"description": "Algorithms and data-structures implemented on JavaScript",
5-
"main": "index.js",
6-
"scripts": {
7-
"lint": "eslint ./src/**",
8-
"test": "jest",
9-
"coverage": "npm run test -- --coverage",
10-
"ci": "npm run lint && npm run coverage",
11-
"prepare": "husky install"
12-
},
135
"repository": {
146
"type": "git",
157
"url": "git+https://github.com/trekhleb/javascript-algorithms.git"
@@ -28,28 +20,36 @@
2820
"interview",
2921
"interview-preparation"
3022
],
31-
"author": "Oleksii Trekhleb (https://www.linkedin.com/in/trekhleb/)",
23+
"author": "Oleksii Trekhleb (https://trekhleb.dev)",
3224
"license": "MIT",
3325
"bugs": {
3426
"url": "https://github.com/trekhleb/javascript-algorithms/issues"
3527
},
3628
"homepage": "https://github.com/trekhleb/javascript-algorithms#readme",
29+
"main": "index.js",
30+
"scripts": {
31+
"lint": "eslint ./src/**",
32+
"test": "jest",
33+
"coverage": "npm run test -- --coverage",
34+
"ci": "npm run lint && npm run coverage",
35+
"prepare": "husky install"
36+
},
3737
"devDependencies": {
38-
"@babel/cli": "7.15.7",
39-
"@babel/preset-env": "7.15.8",
40-
"@types/jest": "27.0.2",
41-
"canvas": "2.8.0",
42-
"eslint": "8.0.1",
43-
"eslint-config-airbnb": "18.2.1",
44-
"eslint-plugin-import": "2.25.2",
45-
"eslint-plugin-jest": "25.2.2",
46-
"eslint-plugin-jsx-a11y": "6.4.1",
47-
"eslint-plugin-react": "7.26.1",
48-
"husky": "7.0.2",
49-
"jest": "27.3.0"
38+
"@babel/cli": "7.16.8",
39+
"@babel/preset-env": "7.16.11",
40+
"@types/jest": "27.4.0",
41+
"canvas": "2.9.0",
42+
"eslint": "8.7.0",
43+
"eslint-config-airbnb": "19.0.4",
44+
"eslint-plugin-import": "2.25.4",
45+
"eslint-plugin-jest": "25.7.0",
46+
"eslint-plugin-jsx-a11y": "6.5.1",
47+
"eslint-plugin-react": "7.28.0",
48+
"husky": "7.0.4",
49+
"jest": "27.4.7"
5050
},
5151
"engines": {
52-
"node": ">=12.0.0",
53-
"npm": ">=6.9.0"
52+
"node": ">=14.16.0",
53+
"npm": ">=6.14.0"
5454
}
5555
}

‎src/algorithms/math/fibonacci/__test__/fibonacciNth.test.js

-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,5 @@ describe('fibonacciNth', () => {
1919
expect(fibonacciNth(73)).toBe(806515533049393);
2020
expect(fibonacciNth(74)).toBe(1304969544928657);
2121
expect(fibonacciNth(75)).toBe(2111485077978050);
22-
expect(fibonacciNth(80)).toBe(23416728348467685);
23-
expect(fibonacciNth(90)).toBe(2880067194370816120);
2422
});
2523
});

0 commit comments

Comments
 (0)
Please sign in to comment.