-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
51 lines (51 loc) · 1.38 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
{
"name": "react-use-fuzzy",
"version": "1.0.4",
"description": "React hook for client side fuzzy search using Fuse.js",
"homepage": "https://github.com/hellojoshuatonga/react-use-fuzzy#readme",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"prepublish": "npm run build",
"build": "tsc -p tsconfig.build.json",
"format": "prettier --write \"src/**/*.ts\"",
"dev": "concurrently --handle-input \"wait-on lib/index.js && nodemon\" \"tsc -w -p tsconfig.build.json\" ",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"lint": "tslint -p tsconfig.json -c tslint.json"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"keywords": [
"react",
"hooks",
"fuzzy",
"fuzzy-search",
"fuse.js",
"client-search"
],
"author": "Joshua Tonga <[email protected]> (https://hellojoshuatonga.github.io/)",
"license": "MIT",
"peerDependencies": {
"react": ">= 16",
"fuse.js": "^3.4.5"
},
"devDependencies": {
"@types/jest": "^24.0.23",
"@types/react": "^16.9.15",
"concurrently": "^5.0.0",
"jest": "^24.9.0",
"nodemon": "^2.0.1",
"prettier": "^1.19.1",
"ts-jest": "^24.2.0",
"ts-node": "^8.5.4",
"tslint": "^5.20.1",
"typescript": "^3.7.3",
"wait-on": "^3.3.0",
"fuse.js": "^3.4.5",
"react": "^16.12.0"
}
}