-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
66 lines (66 loc) · 1.56 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
{
"name": "sort-unwind",
"version": "3.1.0",
"description": "Sorts an array and then unwinds that sort on another array",
"author": "Philihp Busby <[email protected]>",
"license": "MIT",
"sideEffects": false,
"type": "module",
"main": "./dist/index.cjs",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "tsup",
"lint": "eslint .",
"prepare": "husky && npm run build",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch"
},
"files": [
"/dist/",
"package.json",
"!/dist/**/__tests__/*.js"
],
"keywords": [
"functional",
"array",
"undo",
"sort"
],
"devDependencies": {
"@philihp/prettier-config": "1.0.0",
"@tsconfig/recommended": "1.0.8",
"@types/jest": "29.5.14",
"esbuild-jest": "0.5.0",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-jest": "28.9.0",
"fast-shuffle": "6.1.1",
"husky": "9.1.7",
"jest": "29.7.0",
"tsup": "8.3.5",
"typescript": "5.7.2",
"typescript-eslint": "8.17.0",
"lint-staged": "15.2.10",
"prettier": "3.4.2",
"ts-jest": "29.2.5"
},
"homepage": "https://github.com/philihp/sort-unwind#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/philihp/sort-unwind.git"
},
"bugs": {
"url": "https://github.com/philihp/sort-unwind/issues"
},
"prettier": "@philihp/prettier-config",
"engines": {
"node": ">=18.0.0"
}
}