-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.13 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.13 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
{
"name": "fuse-react-hook",
"type": "module",
"version": "0.0.5",
"description": "A simple and strongly typed hook for using Fuse.js in React",
"license": "MIT",
"private": false,
"source": "./index.ts",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "tsc",
"bundle": "microbundle index.ts --format cjs",
"bundle:watch": "microbundle watch index.ts --format cjs",
"test": "jest",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/omer-ayhan/fuse-react-hook.git"
},
"author": {
"name": "Omer Ayhan",
"email": "om.ayhan247@gmail.com"
},
"peerDependencies": {
"fuse.js": "^6.6.2",
"react": ">= 16"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.18.6",
"@testing-library/react-hooks": "^1.0.4",
"fuse.js": "^6.6.2",
"jest": "^24.8.0",
"microbundle": "^0.11.0",
"react": ">= 16",
"react-dom": ">= 16",
"react-test-renderer": ">= 16",
"typescript": "^4.9.4"
},
"keywords": [
"fuzzy",
"fuse.js",
"search",
"react",
"react-hook"
]
}