@gabrielrufino/cube 1.0.32 → 1.0.35

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  Data Structures and Algorithms made in Typescript
4
4
 
5
+ <small>Black Tech By [Gabriel Rufino](https://github.com/gabrielrufino) 🖤</small>
6
+
5
7
  ## Getting started
6
8
 
7
9
  #### Installing package
@@ -7,7 +7,7 @@ export default class LinkedList<T = number> implements ILinkedList<T> {
7
7
  constructor(...inputs: T[]);
8
8
  get data(): {
9
9
  value: T;
10
- next: T | null;
10
+ next: NonNullable<T> | null;
11
11
  }[];
12
12
  get size(): number;
13
13
  get isEmpty(): boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gabrielrufino/cube",
3
- "version": "1.0.32",
3
+ "version": "1.0.35",
4
4
  "description": "Data Structures and Algorithms made in Typescript",
5
5
  "main": "build/index.js",
6
6
  "scripts": {
@@ -29,20 +29,20 @@
29
29
  },
30
30
  "homepage": "https://github.com/gabrielrufino/cube#readme",
31
31
  "devDependencies": {
32
- "@faker-js/faker": "^6.3.1",
32
+ "@faker-js/faker": "^7.5.0",
33
33
  "@stryker-mutator/core": "^6.1.2",
34
34
  "@stryker-mutator/jest-runner": "^6.1.2",
35
35
  "@stryker-mutator/typescript-checker": "^6.1.2",
36
- "@types/jest": "^27.5.2",
37
- "@typescript-eslint/eslint-plugin": "^5.31.0",
38
- "@typescript-eslint/parser": "^5.31.0",
39
- "eslint": "^8.20.0",
40
- "eslint-config-xo": "^0.39.0",
41
- "jest": "^27.5.1",
36
+ "@types/jest": "^28.1.8",
37
+ "@typescript-eslint/eslint-plugin": "^5.36.1",
38
+ "@typescript-eslint/parser": "^5.36.1",
39
+ "eslint": "^8.23.0",
40
+ "eslint-config-xo": "^0.42.0",
41
+ "jest": "^28.1.3",
42
42
  "rimraf": "^3.0.2",
43
43
  "stryker-cli": "^1.0.2",
44
- "ts-jest": "^27.1.5",
44
+ "ts-jest": "^28.0.8",
45
45
  "ts-node": "^10.9.1",
46
- "typescript": "^4.7.4"
46
+ "typescript": "^4.8.2"
47
47
  }
48
48
  }