UNPKG

sort-algorithms-js

Version:

production-ready sort algorithms implementation in javascript.

51 lines (50 loc) 1.28 kB
{ "name": "sort-algorithms-js", "version": "3.11.1", "description": "production-ready sort algorithms implementation in javascript.", "main": "index.js", "types": "index.d.ts", "directories": { "test": "test" }, "scripts": { "build": "jshint ./lib", "test": "mocha ./test/**/*.spec.js" }, "keywords": [ "sort algorithms", "javascript sort algorithms", "sort algorithms javascript", "sorting", "sort algorithms js", "bubble sort", "insertion sort", "selection sort", "heap sort", "quick sort", "merge sort", "radix sort" ], "repository": { "type": "git", "url": "https://www.github.com/eyas-ranjous/sort-algorithms-js" }, "author": "Eyas Ranjous <eyas.ranjous@gmail.com>", "license": "MIT", "homepage": "https://github.com/eyas-ranjous/sort-algorithms-js#readme", "devDependencies": { "chai": "^4.2.0", "commander": "^5.1.0", "eslint": "^6.8.0", "eslint-config-airbnb-base": "^14.0.0", "eslint-plugin-import": "^2.19.1", "grunt": "^1.0.4", "grunt-eslint": "^22.0.0", "grunt-mocha-istanbul": "^5.0.2", "grunt-mocha-test": "^0.13.3", "istanbul": "^0.4.5", "mocha": "^6.2.2", "require-reload": "^0.2.2", "timer-node": "^2.0.0" } }