forked from MartinL83/react-use-fuse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 993 Bytes
/
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
{
"name": "react-use-fuse",
"version": "0.5.2",
"description": "A tiny wrapper for the Fuse.js library fuzzy-search using React Hooks.",
"main": "dist/index.js",
"scripts": {
"build": "microbundle ./src/index.js --format cjs",
"dev": "microbundle watch ./src/index.js --format cjs",
"test": "jest",
"prepublishOnly": "npm build && npm test"
},
"author": {
"name": "Martin Lindgren",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/MartinL83/react-use-fuse"
},
"license": "MIT",
"peerDependencies": {
"react": ">= 16",
"fuse.js": "^3.4.5"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@testing-library/react-hooks": "^1.0.4",
"fuse.js": "^3.4.5",
"jest": "^24.8.0",
"lodash.difference": "^4.5.0",
"microbundle": "^0.11.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-test-renderer": "^16.8.6"
}
}