@achraf-dev/sorting-algo
Version:
Sort multiple types of data structures using Bubble Sort.
39 lines (38 loc) • 914 B
JSON
{
"name": "@achraf-dev/sorting-algo",
"version": "1.0.0",
"description": "Sort multiple types of data structures using Bubble Sort.",
"main": "build/index.js",
"bin": "build/index.js",
"files": [
"build"
],
"publishConfig": {
"access": "public"
},
"keywords": [
"bubble-sort",
"typescript",
"ts",
"algorithm",
"sorting"
],
"repository": "https://github.com/NightClover-code/sorting-algorithm",
"author": "Achraf Elmouhib <elmouhib2003achraf@gmail.com>",
"license": "MIT",
"scripts": {
"serve:build": "tsc -w",
"serve:run": "nodemon build/index.js",
"start:build": "tsc",
"start": "node build/index.js",
"prepublishOnly": "tsc"
},
"dependencies": {
"prompt-radio": "^1.2.1",
"prompt-sync": "^4.2.0"
},
"devDependencies": {
"concurrently": "^6.2.0",
"nodemon": "^2.0.7"
}
}