-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.29 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
{
"name": "@ovvio/avl",
"version": "2.3.0",
"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": {
"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"
},
"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"
},
"keywords": [
"binary-tree",
"bst",
"avl-tree",
"avl",
"balanced-search-tree"
]
}