-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
70 lines (70 loc) · 1.9 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
63
64
65
66
67
68
69
70
{
"name": "scl",
"version": "4.1.1",
"description": "A curated set of essential algorithms and data structures for TypeScript",
"sideEffects": false,
"type": "module",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/samvv/scl.js.git"
},
"bugs": {
"url": "https://github.com/samvv/scl.js/issues"
},
"homepage": "https://samvv.github.io/scl.js",
"devDependencies": {
"@eslint/js": "^9.15.0",
"@types/benchmark": "^2.1.5",
"@types/chai": "^5.0.1",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.1",
"benchmark": "^2.1.4",
"chai": "^5.1.2",
"coveralls": "^3.1.1",
"eslint": "^8.57.1",
"husky": "^9.1.7",
"merge-char": "^1.3.4",
"mocha": "^10.8.2",
"nyc": "^17.1.0",
"rimraf": "^6.0.1",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.2",
"typedoc": "^0.27.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.16.0",
"xxhashjs": "^0.2.2"
},
"scripts": {
"watch": "mocha --watch lib/test --require source-map-support/register",
"prepare": "husky install",
"lint": "eslint . --ext .ts",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"test": "mocha lib/test --require source-map-support/register",
"write-coverage": "nyc --reporter json mocha 'src/test/**/*.ts' --require ts-node/register --require source-map-support/register",
"coverage": "nyc mocha 'src/test/**/*.ts' --require ts-node/register --require source-map-support/register",
"build-docs": "rimraf docs/* && typedoc --out docs"
},
"authors": [
"Sam Vervaeck"
],
"keywords": [
"data",
"algorithm",
"data-structure",
"library",
"typescript",
"collection",
"priority-queue",
"avl-tree",
"hash-map",
"hash-set",
"dictionary",
"map",
"set"
],
"license": "MIT",
"dependencies": {
"reflect-types": "^2.0.0"
}
}