-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
33 lines (33 loc) · 898 Bytes
/
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
{
"name": "olical-binary-search",
"version": "1.0.0",
"description": "This is a binary search implementation in JavaScript that was born from a couple of my blog posts. It focusses on heavy generative testing and benchmarks to make sure it works and runs fast.",
"main": "src/binarySearch.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "gulp test",
"benchmark": "gulp benchmark"
},
"repository": {
"type": "git",
"url": "https://github.com/Olical/binary-search"
},
"keywords": [
"binary",
"search"
],
"author": "Oliver Caldwell",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/Olical/binary-search/issues"
},
"homepage": "https://github.com/Olical/binary-search",
"devDependencies": {
"gulp": "^3.8.10",
"gulp-bench": "^1.1.0",
"gulp-mocha": "^2.0.0",
"mocha-testcheck": "^0.1.2"
}
}