-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
71 lines (71 loc) · 1.63 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
71
{
"name": "fast-shuffle",
"version": "6.1.1",
"description": "A fast implementation of a fisher-yates shuffle that does not mutate the source array.",
"homepage": "https://github.com/philihp/fast-shuffle",
"repository": "https://github.com/philihp/fast-shuffle.git",
"keywords": [
"array",
"knuth",
"fisher-yates",
"shuffle",
"deterministic",
"pure",
"seed",
"random",
"curried"
],
"sideEffects": false,
"main": "./dist/index.js",
"files": [
"/dist",
"!/dist/**/__tests__/*"
],
"directories": {
"test": "test"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"lint": "eslint src",
"prepare": "husky",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch"
},
"author": "Philihp Busby <[email protected]>",
"license": "MIT",
"dependencies": {
"pcg": "1.1.0"
},
"devDependencies": {
"@philihp/prettier-config": "1.0.0",
"@tsconfig/node20": "20.1.4",
"@types/jest": "29.5.14",
"@types/ramda": "0.30.2",
"eslint": "9.17.0",
"eslint-plugin-jest": "28.10.0",
"eslint-plugin-prettier": "5.2.1",
"husky": "9.1.7",
"jest": "29.7.0",
"lint-staged": "15.2.11",
"prettier": "3.4.2",
"ramda": "0.30.1",
"ts-jest": "29.2.5",
"typescript": "5.7.2",
"typescript-eslint": "8.18.1"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"modulePathIgnorePatterns": [
"dist/"
]
},
"lint-staged": {
"src/**/*.{js,jsx,json,.ts,.tsx}": [
"eslint src --fix",
"prettier --write"
]
},
"prettier": "@philihp/prettier-config"
}