sorting-algorithms-lib
Version:
sorting-algorithms-lib is a lightweight JavaScript library that provides efficient implementations of various sorting algorithms. Whether you're learning algorithms, benchmarking performance, or building a project that requires sorting, this library has y
36 lines (35 loc) • 1.02 kB
JSON
{
"name": "sorting-algorithms-lib",
"version": "1.1.1",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest"
},
"keywords": [
"sorting",
"algorithms",
"JavaScript",
"library",
"TypeScript",
"bubble sort",
"selection sort",
"insertion sort",
"merge sort",
"quick sort"
],
"author": "Gorosss",
"license": "MIC",
"description": "sorting-algorithms-lib is a lightweight JavaScript library that provides efficient implementations of various sorting algorithms. Whether you're learning algorithms, benchmarking performance, or building a project that requires sorting, this library has you covered!",
"repository": {
"type": "git",
"url": "git+https://github.com/Gorosss/sorting-algorithms-lib.git"
},
"bugs": {
"url": "https://github.com/Gorosss/sorting-algorithms-lib/issues"
},
"homepage": "https://github.com/Gorosss/sorting-algorithms-lib#readme",
"devDependencies": {
"@types/node": "^22.13.5"
}
}