Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions .eslintignore

This file was deleted.

100 changes: 0 additions & 100 deletions .eslintrc.yaml

This file was deleted.

2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,2 @@
.coverage
.jest
dist
node_modules
1 change: 1 addition & 0 deletions .node-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v22.17.1
6 changes: 0 additions & 6 deletions .prettierignore

This file was deleted.

5 changes: 0 additions & 5 deletions .prettierrc.yaml

This file was deleted.

61 changes: 0 additions & 61 deletions jest.config.ts

This file was deleted.

38 changes: 12 additions & 26 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,18 @@
"name": "algorithms-and-data-structures",
"version": "1.0.0",
"description": "An open source collection and playground of algorithms, data structures and related documentation to brush up your knowledge of computer science fundamentals, or learn it from scratch.",
"type": "module",
"scripts": {
"prepare": "husky install",
"dev": "tsc --watch",
"start": "ts-node",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint --ext .ts .",
"lint:fix": "eslint --fix --ext .ts .",
"pretty": "prettier --write '**/**/*.{ts,json,yml,yaml,md}'",
"ts-check": "tsc --pretty"
"clean": "rm -rf dist",
"build": "pnpm clean && tsc",
"watch": "pnpm clean && tsc --watch"
},
"packageManager": "[email protected]",
"devDependencies": {
"mocha": "^11.7.1",
"nyc": "^17.1.0",
"sinon": "^21.0.0",
"typescript": "^5.8.3"
},
"repository": {
"type": "git",
Expand All @@ -38,21 +40,5 @@
"bugs": {
"url": "https://github.com/simonespa/algorithms-and-data-structures/issues"
},
"homepage": "https://github.com/simonespa/algorithms-and-data-structures#readme",
"devDependencies": {
"@types/jest": "^29.5.6",
"@types/node": "^20.8.9",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.6.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"pretty-quick": "^3.1.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
"homepage": "https://github.com/simonespa/algorithms-and-data-structures#readme"
}
Loading