-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
119 lines (119 loc) · 3.02 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "natural-orderby",
"version": "5.0.0",
"description": "Lightweight and performant natural sorting of arrays and collections by differentiating between unicode characters, numbers, dates, etc.",
"sideEffects": false,
"main": "./dist/main.js",
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/yobacca/natural-orderby.git"
},
"scripts": {
"build": "tsc && rollup -c",
"clean": "git clean -fdX .",
"docs": "docsify serve docs",
"format": "prettier --ignore-path .eslintignore --write src",
"lint": "eslint src",
"test": "cross-env TZ=UTC jest src",
"typecheck": "tsc --noEmit --emitDeclarationOnly false",
"size": "filesize",
"prepublishOnly": "yarn build",
"prepare": "husky"
},
"files": [
"dist/",
"LICENSE.md",
"CHANGELOG.md",
"README.md"
],
"keywords": [
"sort",
"order",
"string",
"natsort",
"natcmp",
"compare",
"alphanum",
"unicode",
"date",
"number",
"float",
"numeric",
"natural",
"human",
"javascript",
"array",
"collection",
"list",
"sorting",
"case sensitive",
"case insensitive",
"ascending",
"descending",
"browser",
"node.js",
"node"
],
"author": "Olaf Ennen <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/yobacca/natural-orderby/issues"
},
"homepage": "https://yobacca.github.io/natural-orderby",
"dependencies": {},
"devDependencies": {
"@ampproject/filesize": "^4.3.0",
"@babel/core": "^7.18.2",
"@babel/preset-env": "^7.18.2",
"@babel/preset-modules": "^0.1.5",
"@babel/preset-typescript": "^7.17.12",
"@changesets/cli": "^2.25.2",
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"@commitlint/types": "^19.0.3",
"@rollup/plugin-babel": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@types/jest": "29.5.13",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"cross-env": "^7.0.3",
"docsify-cli": "^4.3.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.8.0",
"eslint-plugin-n": "^17.10.2",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.5",
"jest": "^29.3.1",
"lint-staged": "^15.2.9",
"prettier": "^3.3.3",
"rollup": "^4.21.1",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-dts": "^6.1.1",
"ts-jest": "^29.0.3",
"typescript": "^5.5.4"
},
"lint-staged": {
"*.{ts,md,json}": [
"prettier --write"
],
"*.{ts,json}": [
"eslint --rule \"@typescript-eslint/no-unused-vars: error\""
]
},
"engines": {
"node": ">=18"
},
"filesize": {
"./dist/umd/natural-orderby.production.min.js": {
"none": "5.5 kB"
},
"./dist/natural-orderby.production.min.js": {
"none": "4.6 kB"
}
}
}