-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 827 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
{
"name": "huge-csv-sorter",
"version": "1.0.3",
"description": "sorts huge CSV files efficiently",
"keywords": [
"csv",
"huge",
"large",
"big",
"sort",
"order",
"fast",
"sqlite"
],
"repository": {
"type": "git",
"url": "https://github.com/livetocode/huge-csv-sorter.git"
},
"main": "dist/sorter.js",
"scripts": {
"compile": "./node_modules/.bin/tsc",
"test": "jest --verbose",
"show-coverage": "open output/coverage/lcov-report/index.html"
},
"author": "Morgan Martinet",
"license": "ISC",
"engines": {
"node": ">=16.0.0"
},
"devDependencies": {
"@jest/globals": "29.7.0",
"@types/jest": "29.5.13",
"@types/node": "22.5.5",
"jest": "29.7.0",
"ts-jest": "29.2.5",
"typescript": "5.6.2"
},
"dependencies": {
}
}