{
  "_args": [
    [
      "splaytree@3.1.0",
      "/var/www/nomadis/maj/nomadis_maj"
    ]
  ],
  "_from": "splaytree@3.1.0",
  "_id": "splaytree@3.1.0",
  "_inBundle": false,
  "_integrity": "sha512-gvUGR7xnOy0fLKTCxDeUZYgU/I1Tdf8M/lM1Qrf8L2TIOR5ipZjGk02uYcdv0o2x7WjVRgpm3iS2clLyuVAt0Q==",
  "_location": "/splaytree",
  "_phantomChildren": {},
  "_requested": {
    "type": "version",
    "registry": true,
    "raw": "splaytree@3.1.0",
    "name": "splaytree",
    "escapedName": "splaytree",
    "rawSpec": "3.1.0",
    "saveSpec": null,
    "fetchSpec": "3.1.0"
  },
  "_requiredBy": [
    "/polygon-clipping"
  ],
  "_resolved": "https://registry.npmjs.org/splaytree/-/splaytree-3.1.0.tgz",
  "_spec": "3.1.0",
  "_where": "/var/www/nomadis/maj/nomadis_maj",
  "author": {
    "name": "Alexander Milevski",
    "email": "info@w8r.name"
  },
  "browser": "dist/splay.js",
  "bugs": {
    "url": "https://github.com/w8r/splay-tree/issues"
  },
  "dependencies": {},
  "description": "Fast Splay tree for Node and browser",
  "devDependencies": {
    "@types/chai": "^4.1.4",
    "@types/mocha": "^5.2.2",
    "avl": "^1.4.4",
    "benchmark": "^2.1.4",
    "bintrees": "^1.0.2",
    "chai": "^4.2.0",
    "mocha": "^6.2.0",
    "nodemon": "^1.19.2",
    "nyc": "^14.1.1",
    "reify": "*",
    "rollup": "*",
    "rollup-plugin-typescript2": "^0.24.1",
    "ts-node": "^6.1.1",
    "tslib": "^1.9.3",
    "tslint": "^5.14.0",
    "typescript": "^2.9.2"
  },
  "directories": {
    "test": "test",
    "typings": "typings"
  },
  "files": [
    "dist",
    "typings",
    "src"
  ],
  "homepage": "https://github.com/w8r/splay-tree#readme",
  "keywords": [
    "binary-tree",
    "bst",
    "splay-tree",
    "splay",
    "balanced-search-tree"
  ],
  "license": "MIT",
  "main": "dist/splay.js",
  "mocha": {
    "require": [
      "ts-node/register"
    ]
  },
  "module": "dist/splay.esm.js",
  "name": "splaytree",
  "nyc": {
    "include": [
      "src/*.ts"
    ],
    "exclude": [
      "tests/**/*.ts"
    ],
    "extension": [
      ".ts"
    ],
    "require": [
      "ts-node/register"
    ],
    "reporter": [
      "text-summary",
      "html"
    ],
    "sourceMap": true,
    "instrument": true
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/w8r/splay-tree.git"
  },
  "scripts": {
    "benchmark": "node -r reify bench/benchmark.js",
    "build": "rollup -c && npm run types",
    "clean": "rm -rf dist coverage .nyc",
    "lint": "tslint --project tsconfig.json ./src/*.ts",
    "posttest": "nyc report --reporter=json",
    "prebenchmark": "npm run build",
    "prepublishOnly": "npm run build && npm test",
    "start": "npm run test:watch",
    "test": "nyc mocha tests/**/*.test.ts",
    "test:watch": "nodemon --watch index.js --watch tests --exec 'npm test'",
    "types": "tsc --declaration --emitDeclarationOnly"
  },
  "types": "typings/index.d.ts",
  "unpkg": "dist/splay.js",
  "version": "3.1.0"
}
