forked from kentcdodds/match-sorter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.46 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
{
"name": "match-sorter",
"version": "0.0.0-semantically-released",
"description": "Simple, expected, and deterministic best-match sorting of an array in JavaScript",
"main": "dist/match-sorter.cjs.js",
"module": "dist/match-sorter.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "kcd-scripts build --bundle --environment BUILD_NAME:matchSorter",
"lint": "kcd-scripts lint",
"setup": "npm install && npm run validate -s",
"test": "kcd-scripts test",
"typecheck": "kcd-scripts typecheck",
"test:update": "npm test -- --updateSnapshot --coverage",
"validate": "kcd-scripts validate"
},
"files": [
"dist"
],
"keywords": [
"autocomplete",
"filter list",
"sort",
"advanced sort",
"user intuitive sort"
],
"author": "Kent C. Dodds <me@kentcdodds.com> (https://kentcdodds.com)",
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.23.8",
"remove-accents": "0.5.0"
},
"devDependencies": {
"@types/jest": "^26.0.15",
"kcd-scripts": "^15",
"typescript": "^5.3"
},
"eslintConfig": {
"extends": [
"./node_modules/kcd-scripts/eslint.js"
]
},
"eslintIgnore": [
"node_modules",
"coverage",
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/kentcdodds/match-sorter"
},
"bugs": {
"url": "https://github.com/kentcdodds/match-sorter/issues"
},
"homepage": "https://github.com/kentcdodds/match-sorter#readme"
}