-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.12 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": "@wecandobetter/btree",
"version": "1.0.1-alpha.0",
"description": "B-Tree implementation in TypeScript",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "npm run build:ts",
"build:ts": "tsc -p tsconfig.build.json",
"test": "npm run build && jest",
"test:coverage": "npm run test -- --coverage",
"publish:npm": "npm run test && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WeCanDoBetter/oql.git"
},
"keywords": [
"btree",
"b-tree",
"b tree",
"btree implementation",
"generic btree",
"sorted tree"
],
"author": {
"name": "We Can Do Better",
"email": "[email protected]",
"url": "https://wcdb.life"
},
"contributors": [
{
"name": "Michiel van der Velde",
"email": "[email protected]",
"url": "https://michielvdvelde.nl"
}
],
"license": "MIT",
"files": [
"dist"
],
"devDependencies": {
"@types/jest": "^29.5.10",
"@types/node": "^20.9.4",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
}
}