-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
54 lines (54 loc) · 1.4 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "avl",
"version": "1.5.3",
"author": "Alexander Milevski <[email protected]>",
"license": "MIT",
"description": "Fast AVL tree for Node and browser",
"main": "dist/avl.js",
"jsnext:main": "src/index",
"module": "src/index",
"types": "src/index.d.ts",
"files": [
"dist",
"src"
],
"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 --strict src/index.d.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.2",
"chai": "^4.3.4",
"eslint": "^7.25.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"functional-red-black-tree": "^1.0.1",
"google-closure-library": "^20210406.0.0",
"mocha": "^8.3.2",
"reify": "^0.20.12",
"rollup": "^2.47.0",
"rollup-plugin-buble": "^0.19.8",
"typescript": "^4.2.4"
},
"keywords": [
"binary-tree",
"bst",
"avl-tree",
"avl",
"balanced-search-tree"
],
"dependencies": {}
}