-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 893 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 893 Bytes
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
{
"name": "balanced-tree",
"description": "Red-Black Tree implementation, as described in Introduction to Algorithms (CLR)",
"homepage": "https://github.com/inventables/balanced-tree",
"repository": {
"type": "git",
"url": "https://github.com/inventables/balanced-tree.git"
},
"bugs": {
"url": "https://github.com/inventables/balanced-tree/issues",
"email": "david@inventables.com"
},
"license": "EPL-1.0",
"author": {
"name": "David Altenburg",
"email": "david@inventables.com"
},
"version": "0.3.0",
"main": "src/rbtree.js",
"type": "module",
"dependencies": {},
"devDependencies": {
"fast-check": "^3.22.0",
"mocha": "~10.2.0",
"mocha-testcheck": "^1.0.0-rc.0",
"supervisor": "~0.5.2",
"testcheck": "^1.0.0-rc.2"
},
"scripts": {
"autotest": "supervisor -q -n exit -x yarn -- test",
"test": "mocha"
}
}