Skip to content

Commit 02c4c10

Browse files
committed
package.json
1 parent cf2039c commit 02c4c10

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

package.json

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)