-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.46 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.46 KB
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
{
"name": "digitree",
"version": "1.4.6",
"description": "Lightweight B+Tree implementation in TypeScript",
"type": "module",
"main": "./dist/index.js",
"exports": {
".": "./dist/index.js"
},
"packageManager": "yarn@4.12.0",
"scripts": {
"clean": "rimraf dist/",
"doc": "npx typedoc -out docs src",
"build": "npm run clean && tsc -p tsconfig.build.json",
"test": "node --loader=ts-node/esm node_modules/mocha/bin/mocha.js test/**/*.test.ts --colors",
"prepublish": "yarn clean && npm run build && npm run doc",
"pub": "npx bumpp --no-push --no-commit --no-tag --no-git-check -y && yarn npm publish --access public"
},
"repository": {
"type": "git",
"url": "https://github.com/Digithought/Digitree.git"
},
"homepage": "https://github.com/Digithought/Digitree",
"bugs": {
"url": "https://github.com/Digithought/Digitree/issues"
},
"keywords": [
"b-tree",
"btree",
"b+tree",
"sorted list",
"sorted dictionary",
"sorted set",
"set",
"dictionary"
],
"author": "Nathan T. Allan",
"license": "Apache-2.0",
"devDependencies": {
"@types/chai": "^5.2.2",
"@types/mocha": "^10.0.10",
"@typescript-eslint/eslint-plugin": "^8.32.1",
"@typescript-eslint/parser": "^8.32.1",
"bumpp": "^10.4.0",
"chai": "^5.2.0",
"eslint": "^9.27.0",
"mocha": "^11.4.0",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typedoc": "^0.28.4",
"typescript": "^5.8.3"
}
}