-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
49 lines (49 loc) · 1.25 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
{
"name": "react-fuzzy-highlighter",
"version": "1.1.1",
"license": "MIT",
"description": "Lightweight fuzzy search highlighting component using fuse.js",
"author": "Eric Liu (https://github.com/metonym)",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "vitest",
"prepack": "tsc",
"format": "prettier --ignore-path .gitignore --write ."
},
"dependencies": {
"fuse.js": "^6.4.6",
"prettier": "^2.5.1",
"set-value": "^3.0.1",
"strind": "^0.3.0"
},
"devDependencies": {
"@types/enzyme": "^3.10.3",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/react": "^16.9.2",
"@types/react-dom": "^16.9.0",
"@types/set-value": "^2.0.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"jsdom": "^20.0.0",
"react": "^16.x",
"react-dom": "^16.x",
"typescript": "^3.6.3",
"vitest": "^0.18.1"
},
"repository": {
"type": "git",
"url": "https://github.com/metonym/react-fuzzy-highlighter.git"
},
"homepage": "https://github.com/metonym/react-fuzzy-highlighter",
"bugs": "https://github.com/metonym/react-fuzzy-highlighter/issues",
"keywords": [
"react",
"fuzzy",
"fuse.js",
"highlight"
],
"files": [
"lib"
]
}