-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.63 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "nano-binary-search",
"description": "Binary search for JavaScript done right.",
"version": "1.0.6",
"type": "module",
"main": "index.js",
"types": "index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"default": "./index.js"
}
},
"scripts": {
"start": "tape6-server --trace",
"test": "tape6 --flags FO",
"test:bun": "tape6-bun --flags FO",
"test:deno": "deno run -A `npx tape6-runner main` --flags FO",
"test:deno-original": "tape6-deno --flags FO",
"test:proc": "tape6-proc --flags FO",
"test:proc:bun": "bun run `npx tape6-proc --self` --flags FO",
"test:proc:deno": "deno run -A `npx tape6-proc --self` --flags FO --runFileArgs -A",
"ts-check": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git https://github.com/uhop/nano-binary-search.git"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/uhop"
},
"bugs": {
"url": "https://github.com/uhop/nano-binary-search/issues"
},
"homepage": "https://github.com/uhop/nano-binary-search#readme",
"keywords": [
"binary search",
"algorithm"
],
"author": "Eugene Lazutkin <[email protected]> (https://www.lazutkin.com/)",
"license": "BSD-3-Clause",
"files": [
"index.*",
"LICENSE",
"README.md"
],
"tape6": {
"tests": [
"tests/test-*.*js"
],
"importmap": {
"imports": {
"tape-six": "/node_modules/tape-six/index.js",
"nano-binary-search": "/index.js"
}
}
},
"devDependencies": {
"tape-six": "^1.0.2",
"tape-six-proc": "^0.12.1",
"typescript": "^5.6.3"
}
}