forked from kentcdodds/match-sorter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.63 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
{
"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",
"jsnext:main": "dist/match-sorter.esm.js",
"module": "dist/match-sorter.esm.js",
"scripts": {
"add-contributor": "kcd-scripts contributors add",
"build": "kcd-scripts build --bundle --environment BUILD_NAME:matchSorter",
"lint": "kcd-scripts lint",
"test": "kcd-scripts test",
"test:cover": "kcd-scripts test --coverage",
"test:update": "npm run test:cover -s -- --updateSnapshot",
"test:build": "kcd-scripts test --config other/jest.config.js --no-watch",
"build-and-test": "npm run build -s && npm run test:build -s",
"validate": "kcd-scripts validate lint,build-and-test,test:cover,test:ts",
"precommit": "kcd-scripts precommit"
},
"files": ["dist"],
"keywords": [
"autocomplete",
"filter list",
"sort",
"advanced sort",
"user intuitive sort"
],
"author": "Kent C. Dodds <kent@doddsfamily.us> (http://kentcdodds.com/)",
"license": "MIT",
"bundledDependencies": ["diacritic"],
"dependencies": {
"diacritic": "0.0.2"
},
"devDependencies": {
"kcd-scripts": "^0.18.2"
},
"eslintConfig": {
"extends": ["./node_modules/kcd-scripts/eslint.js"]
},
"eslintIgnore": ["node_modules", "coverage", "dist"],
"repository": {
"type": "git",
"url": "https://github.com/kentcdodds/match-sorter.git"
},
"bugs": {
"url": "https://github.com/kentcdodds/match-sorter/issues"
},
"homepage": "https://github.com/kentcdodds/match-sorter#readme"
}