diff options
Diffstat (limited to '')
-rw-r--r-- | binary-search/package.json | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/binary-search/package.json b/binary-search/package.json new file mode 100644 index 0000000..9a91ed5 --- /dev/null +++ b/binary-search/package.json @@ -0,0 +1,28 @@ +{ + "name": "binary-search", + "version": "1.3.6", + "description": "tiny binary search function with comparators", + "license": "CC0-1.0", + "typings": "./binary-search.d.ts", + "author": { + "name": "The Dark Sky Company, LLC", + "email": "support@darkskyapp.com" + }, + "contributors": [ + { + "name": "Darcy Parker", + "web": "https://github.com/darcyparker" + } + ], + "repository": { + "type": "git", + "url": "git://github.com/darkskyapp/binary-search.git" + }, + "devDependencies": { + "chai": "^4.2.0", + "mocha": "^5.2.0" + }, + "scripts": { + "test": "mocha" + } +} |