-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.89 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.89 KB
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
{
"name": "@shelf/fast-natural-order-by",
"version": "1.1.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": "vlad@shelf.io",
"url": "https://shelf.io"
},
"main": "lib",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"benchmark": "yarn build && babel benchmark.ts | node",
"build": "rm -rf lib/ && yarn build:types && yarn build:webpack",
"build:types": "tsc -p tsconfig.types.json",
"build:webpack": "NODE_ENV=production webpack",
"coverage": "yarn test --coverage",
"lint": "yarn lint:ci --fix",
"lint:ci": "eslint . --ext .js,.ts,.json",
"prepack": "yarn build",
"test": "TZ=UTC 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": {},
"devDependencies": {
"@babel/cli": "7.19.3",
"@babel/core": "7.20.2",
"@shelf/babel-config": "1.2.0",
"@shelf/eslint-config": "2.18.0",
"@shelf/prettier-config": "1.0.0",
"@shelf/tsconfig": "0.0.9",
"@types/jest": "28.1.8",
"@types/node": "16",
"babel-loader": "9.1.0",
"benny": "3.7.1",
"eslint": "8.28.0",
"husky": "8.0.2",
"jest": "28.1.3",
"lint-staged": "13.0.4",
"natural-orderby": "2.0.3",
"prettier": "2.8.1",
"typescript": "4.8.4",
"webpack": "5.75.0",
"webpack-cli": "4.10.0"
},
"engines": {
"node": ">=14"
},
"publishConfig": {
"access": "public"
}
}