-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.02 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"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"
}
}