62 lines
1.7 KiB
JSON
62 lines
1.7 KiB
JSON
{
|
|
"name": "splaytree",
|
|
"version": "0.1.4",
|
|
"author": "Alexander Milevski <info@w8r.name>",
|
|
"license": "MIT",
|
|
"description": "Fast Splay tree for Node and browser",
|
|
"main": "dist/splay.js",
|
|
"jsnext:main": "index",
|
|
"module": "index",
|
|
"types": "index.d.ts",
|
|
"files": [
|
|
"dist",
|
|
"index.js",
|
|
"index.d.ts"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/w8r/splay.git"
|
|
},
|
|
"scripts": {
|
|
"prebuild": "npm run lint",
|
|
"lint": "eslint src",
|
|
"build": "rollup -c build/rollup.config.umd.js && rollup -c build/rollup.config.es6.js && npm run types",
|
|
"types": "tsc index.d.ts tests/types.ts",
|
|
"pretest": "rollup -c build/rollup.config.tests.js",
|
|
"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 build/tests-bundle.js && npm run types",
|
|
"prepublish": "npm run build && npm test"
|
|
},
|
|
"devDependencies": {
|
|
"avl": "^1.4.0",
|
|
"benchmark": "^2.1.4",
|
|
"bintrees": "^1.0.1",
|
|
"chai": "^4.1.0",
|
|
"eslint": "^4.2.0",
|
|
"eslint-config-airbnb-base": "^11.2.0",
|
|
"eslint-plugin-import": "^2.7.0",
|
|
"functional-red-black-tree": "^1.0.1",
|
|
"google-closure-library": "^20170626.0.0",
|
|
"mocha": "^3.4.2",
|
|
"nodemon": "^1.11.0",
|
|
"rollup": "^0.45.2",
|
|
"rollup-plugin-buble": "^0.15.0",
|
|
"rollup-plugin-multi-entry": "^2.0.1",
|
|
"rollup-watch": "^4.3.1",
|
|
"source-map-support": "^0.4.15",
|
|
"tern": "^0.21.0",
|
|
"typescript": "^2.4.2"
|
|
},
|
|
"keywords": [
|
|
"binary-tree",
|
|
"bst",
|
|
"splay-tree",
|
|
"splay",
|
|
"balanced-search-tree"
|
|
],
|
|
"dependencies": {}
|
|
}
|