-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.67 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
55
56
57
58
59
60
61
62
{
"name": "avl",
"version": "2.0.0",
"author": "Alexander Milevski <info@w8r.name>",
"license": "MIT",
"description": "Fast AVL tree for Node and browser",
"main": "dist/avl.js",
"jsnext:main": "lib/index",
"module": "lib/index",
"types": "dist/index.d.ts",
"files": [
"dist",
"src",
"lib"
],
"repository": {
"type": "git",
"url": "https://github.com/w8r/avl.git"
},
"scripts": {
"prebuild": "npm run lint",
"lint": "eslint \"./src/*.ts\"",
"build": "npm run build:lib && npm run build:dist",
"build:lib": "tsc",
"build:dist": "rollup -c",
"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",
"prepublish": "npm run build && npm test"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"benchmark": "^2.1.4",
"bintrees": "^1.0.2",
"chai": "^4.3.4",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^4.0.0",
"functional-red-black-tree": "^1.0.1",
"google-closure-library": "^20210406.0.0",
"mocha": "^8.3.2",
"prettier": "^2.6.2",
"prettier-plugin-organize-imports": "^2.3.4",
"reify": "^0.20.12",
"rollup": "^2.47.0",
"rollup-plugin-buble": "^0.19.8",
"rollup-plugin-typescript2": "^0.31.2",
"typescript": "^4.2.4"
},
"keywords": [
"binary-tree",
"bst",
"avl-tree",
"avl",
"balanced-search-tree"
],
"dependencies": {}
}