-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.01 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
{
"name": "typescript-ds-lib",
"version": "0.4.0",
"description": "A collection of TypeScript data structure implementations",
"author": "Artiom Baloian <artiom.baloian@gmail.com>",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "rm -rf dist && tsc",
"prepare": "npm run build",
"test": "rm -rf dist && tsc && jest",
"benchmark": "ts-node benchmarks/run.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/baloian/typescript-ds.git"
},
"devDependencies": {
"ts-node": "^10.9.2",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.1",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2"
},
"keywords": [
"typescript",
"data-structures",
"algorithms",
"binary-search-tree",
"linked-list",
"hash-table",
"queue",
"stack",
"deque",
"priority-queue",
"red-black-tree",
"set",
"map",
"matrix"
]
}