boundit
Version:
🔍 JavaScript and TypeScript implementation of lower_bound and upper_bound for efficient data searching.
42 lines (41 loc) • 1.05 kB
JSON
{
"name": "boundit",
"version": "0.0.3",
"description": "🔍 JavaScript and TypeScript implementation of lower_bound and upper_bound for efficient data searching.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"test:verbose": "jest --verbose",
"build": "tsup src/index.ts --format cjs,esm --dts",
"lint": "tsc"
},
"repository": {
"type": "git",
"url": "https://github.com/huseynovvusal/boundit.git"
},
"keywords": [
"binary search",
"lower_bound",
"upper_bound",
"bisect",
"typescript",
"javascript"
],
"author": "Vusal Huseynov",
"license": "MIT",
"bugs": {
"url": "https://github.com/huseynovvusal/boundit/issues"
},
"homepage": "https://github.com/huseynovvusal/boundit#readme",
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.12.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsup": "^8.3.6",
"typescript": "^5.7.3"
}
}