-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.75 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
{
"name": "@shelf/fast-natural-order-by",
"version": "2.0.0",
"description": "Lightweight and performant natural sorting of arrays and collections by differentiating between unicode characters, numbers, dates, etc. 150,000x faster fork of natural-orderby for longer strings",
"license": "MIT",
"author": {
"name": "Vlad Holubiev",
"email": "[email protected]",
"url": "https://shelf.io"
},
"sideEffects": false,
"type": "module",
"exports": "./lib/index.js",
"module": "./lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"benchmark": "yarn build && npx tsx benchmark.ts",
"build": "rm -rf lib/ && tsc",
"coverage": "yarn test --coverage",
"lint": "yarn lint:ci --fix",
"lint:ci": "eslint . --quiet",
"lint:size": "size-limit",
"prepack": "yarn build",
"test": "NODE_OPTIONS=--experimental-vm-modules jest src",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch"
},
"lint-staged": {
"*.{html,md,yml}": "prettier --write",
"*.{js,ts,json}": "eslint --fix",
".circleci/config.yml": ".husky/validate-circleci-config.sh"
},
"prettier": "@shelf/prettier-config",
"dependencies": {
"natural-orderby": "3.0.2"
},
"devDependencies": {
"@shelf/eslint-config": "4.2.1",
"@shelf/prettier-config": "1.0.0",
"@shelf/tsconfig": "0.1.0",
"@size-limit/preset-small-lib": "10.0.3",
"@types/jest": "29.5.14",
"@types/node": "18",
"benny": "3.7.1",
"eslint": "9.17.0",
"husky": "8.0.3",
"jest": "29.7.0",
"lint-staged": "15.3.0",
"prettier": "3.4.2",
"size-limit": "10.0.3",
"typescript": "5.7.3"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
}
}