UNPKG

binstree

Version:

Binary search trees for ES6

48 lines (47 loc) 946 B
{ "name": "binstree", "version": "1.2.0", "description": "Binary search trees for ES6", "license": "MIT", "repository": "klaussinani/binstree", "author": { "name": "Klaus Sinani", "email": "klaussinani@gmail.com", "url": "https://klaussinani.github.io" }, "engines": { "node": ">=6" }, "types": "types/binstree.d.ts", "files": [ "src", "types", "index.js" ], "keywords": [ "binary", "search", "tree", "es6", "data", "structure", "typescript" ], "scripts": { "lint": "xo", "test:ts": "tsc --noEmit -p test/types", "test:js": "npm run lint && nyc ava", "test": "npm run test:ts && npm run test:js", "coveralls": "nyc report --reporter=text-lcov | coveralls" }, "devDependencies": { "ava": "2.1.0", "coveralls": "^3.0.3", "nyc": "^13.3.0", "typescript": "^3.3.4000", "xo": "^0.24.0" }, "xo": { "space": 2 } }