-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
43 lines (43 loc) · 1011 Bytes
/
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
{
"name": "large-sort",
"version": "0.2.6",
"type": "commonjs",
"description": "Fast Large file sorting library using external merge sort for NodeJS",
"main": "./lib/large-sort.js",
"scripts": {
"clean": "rimraf ./lib",
"build": "tsc",
"clean-build": "npm run clean && npm run build",
"prepack": "npm run clean-build"
},
"author": {
"name": "Nelson J Perez",
"email": "[email protected]"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nelson-perez/large-sort"
},
"homepage": "https://github.com/nelson-perez/large-sort#readme",
"keywords": [
"sort",
"sorting",
"large sort",
"external merge sort",
"external sorting",
"sorting algorithm",
"merge sort",
"large files",
"files",
"swap",
"typescript"
],
"files": ["./lib/**/*"],
"devDependencies": {
"@types/node": "^13.1.7",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}