-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.29 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
52
53
54
55
56
57
58
59
60
61
62
{
"name": "highlight-matches-utils",
"version": "1.0.0",
"description": "Utility functions to mark and/or highlight character matches in texts",
"main": "index.js",
"files": [
"index.js",
"index.d.ts",
"index.js.flow",
"index.test.js",
"LICENSE"
],
"scripts": {
"test": "jest",
"flow": "flow"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reyronald/highlight-matches-utils.git"
},
"author": {
"name": "Ronald Rey",
"email": "[email protected]",
"url": "https://github.com/reyronald"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/reyronald/highlight-matches-utils/issues"
},
"homepage": "https://github.com/reyronald/highlight-matches-utils#readme",
"dependencies": {
"fuzzaldrin-plus": "^0.6.0"
},
"devDependencies": {
"chalk": "^2.4.1",
"flow-bin": "^0.77.0",
"jest": "^23.4.2",
"react": "^16.4.1"
},
"prettier": {
"singleQuote": true,
"semi": false
},
"jest": {
"testEnvironment": "node",
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"keywords": [
"mark",
"highlight",
"match",
"matches",
"wrap",
"fuzzy",
"fuzzysearch",
"fuzzaldrin",
"fuzzaldrin-plus",
"search",
"filter"
]
}