@nesto-software/avl
Version:
Fast AVL tree for Node and browser
61 lines (60 loc) • 1.59 kB
JSON
{
"name": "@nesto-software/avl",
"version": "1.4.7",
"author": "Alexander Milevski <info@w8r.name>",
"license": "MIT",
"description": "Fast AVL tree for Node and browser",
"main": "dist/avl.es6.js",
"jsnext:main": "src/index",
"module": "src/index",
"types": "src/index.d.ts",
"files": [
"dist",
"src"
],
"contributors": [
"Martin Loeper <martin.loeper@nesto-software.de>"
],
"repository": {
"type": "git",
"url": "https://github.com/w8r/avl.git"
},
"scripts": {
"prebuild": "npm run lint",
"lint": "eslint src",
"build": "rollup -c && npm run types",
"types": "tsc src/index.d.ts tests/types.ts",
"prebenchmark": "npm run build",
"benchmark": "node bench/benchmark.js",
"start": "npm run test:watch",
"test:watch": "nodemon --watch src --watch tests --exec 'npm test'",
"test": "mocha -r reify tests/**/*.test.js && npm run types",
"prepublish": "npm run build && npm test"
},
"devDependencies": {
"benchmark": "^2.1.4",
"bintrees": "^1.0.1",
"chai": "^4.1.2",
"eslint": "^5.5.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"functional-red-black-tree": "^1.0.1",
"google-closure-library": "^20170626.0.0",
"mocha": "^5.2.0",
"reify": "^0.17.3",
"rollup": "^0.65.2",
"rollup-plugin-buble": "^0.19.2",
"typescript": "^3.0.3",
"nodemon": "^1.18.5"
},
"keywords": [
"binary-tree",
"bst",
"avl-tree",
"avl",
"balanced-search-tree"
],
"publishConfig": {
"access": "public"
}
}