-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.11 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": "external-merge-sort",
"version": "0.1.6",
"type": "module",
"main": "index.js",
"description": "Sorting algorithm using external memory if the input iterable is too big",
"scripts": {
"test": "mocha",
"coverage": "c8 mocha",
"prepack": "tsc",
"release": "changeset publish"
},
"files": [
"*.js",
"*.d.ts",
"lib",
"CHANGELOG.md"
],
"repository": {
"type": "git",
"url": "https://github.com/giacomociti/external-merge-sort.git"
},
"keywords": [
"external-sorting",
"merge-sort"
],
"author": "Giacomo Citi",
"license": "MIT",
"bugs": {
"url": "https://github.com/giacomociti/external-merge-sort/issues"
},
"homepage": "https://github.com/giacomociti/external-merge-sort",
"devDependencies": {
"@changesets/cli": "^2.27.6",
"@types/heap": "^0.2.34",
"c8": "^7.12.0",
"fast-check": "^3.3.0",
"mocha": "^10.1.0",
"rdf-utils-fs": "^2.3.0",
"stream-json": "^1.7.5",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"dependencies": {
"heap": "^0.2.7"
},
"mocha": {
"loader": "ts-node/esm"
}
}