-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.17 KB
/
package.json
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
42
43
44
45
46
{
"name": "p3x-binary-search-closest",
"version": "2024.10.104",
"corifeus": {
"icon": "fas fa-train",
"prefix": "p3x-",
"publish": true,
"type": "p3x",
"code": "Bullet",
"nodejs": "v22.3.0",
"opencollective": false,
"reponame": "binary-search-closest",
"build": true
},
"description": "🚅 Find the closest or exact value using binary search",
"main": "src/index.js",
"scripts": {
"test": "grunt && mocha ./test/mocha/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/patrikx3/binary-search-closest.git"
},
"keywords": [
"search",
"binary-search",
"binary",
"value",
"object",
"property",
"closest",
"exact"
],
"author": "Patrik Laszlo <alabard@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/patrikx3/binary-search-closest/issues"
},
"homepage": "https://corifeus.com/binary-search-closest",
"devDependencies": {
"corifeus-builder": "^2024.10.103"
},
"engines": {
"node": ">=12.13.0"
}
}