We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf2039c commit 02c4c10Copy full SHA for 02c4c10
package.json
@@ -0,0 +1,29 @@
1
+{
2
+ "name": "knuth-morris-pratt",
3
+ "version": "1.0.0",
4
+ "description": "An implementation of the Knuth-Morris-Pratt string searching algorithm.",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1"
8
+ },
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "https://github.com/nodash/knuth-morris-pratt.git"
12
13
+ "keywords": [
14
+ "strings",
15
+ "string",
16
+ "string-search",
17
+ "search",
18
+ "knuth",
19
+ "morris",
20
+ "pratt",
21
+ "kmp"
22
+ ],
23
+ "author": "Julian Alexander Fleischer <tirednesscankill@warhog.net>",
24
+ "license": "ISC",
25
+ "bugs": {
26
+ "url": "https://github.com/nodash/knuth-morris-pratt/issues"
27
28
+ "homepage": "https://github.com/nodash/knuth-morris-pratt"
29
+}
0 commit comments