-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.1 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
{
"name": "z-algorithm",
"version": "1.0.0",
"description": "This algorithm finds all occurrences of a pattern in a text in linear time. Let length of text be n and of pattern be m, then total time taken is O(m + n) with linear space complexity.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/karimation/z-algorithm.git"
},
"author": "“kerim <“selmi.kerim@gmail.com\nnpm set init.author.email “selmi.kerim@gmail.com> (“http://www.karimation.com\nnpm set init.author.url “http://www.karimation.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/karimation/z-algorithm/issues"
},
"homepage": "https://github.com/karimation/z-algorithm#readme",
"keywords": [
"z-algorithm",
"pattern-searching-algorithm",
"filter-search-box",
"string",
"string-matching",
"string-compare",
"javascript",
"rn-strings-filter",
"rn-string-matching",
"rn-strig-compare",
"react-native"
],
"devDependencies": {
"jest": "^23.1.0"
}
}