-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.35 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": "big-shuffle",
"version": "1.0.0-dev",
"description": "Linear-time shuffling of large data sets",
"keywords": [
"shuffle",
"csv",
"stream"
],
"homepage": "https://github.com/direct-democracy-solutions/big-shuffle",
"bugs": "https://github.com/direct-democracy-solutions/big-shuffle/issues",
"license": "CC0-1.0",
"main": "lib/index.js",
"files": [
"lib/"
],
"repository": "github:direct-democracy-solutions/big-shuffle",
"scripts": {
"build": "tsc --build",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint \"src/**/*.ts\" \"test/**/*.ts\" --fix",
"lint:ci": "eslint \"src/**/*.ts\" \"test/**/*.ts\"",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage"
},
"devDependencies": {
"@fast-check/jest": "^1.7.0",
"@types/jest": "^29.5.2",
"@types/node": "^20.4.1",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"csv-parse": "^5.4.0",
"csv-stringify": "^6.4.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"fast-check": "^3.11.0",
"jest": "^29.6.1",
"memfs": "^4.2.0",
"null-writable": "^1.0.5",
"prettier": "^2.3.2",
"stream-to-async-iterator": "^1.0.0",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
}
}