-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 728 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 728 Bytes
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
{
"name": "common-substrings",
"version": "3.0.1",
"description": "a method for finding all common strings, particularly quick for large string samples.",
"keywords": [
"common substrings",
"longest substring"
],
"author": "Hanwen Cheng <heawen.cheng@gmail.com>",
"repository": {
"type": "git",
"url": "git://github.com/hanwencheng/CommonSubstrings.git"
},
"main": "lib/commonSubstrings.js",
"source": "src/commonSubstrings.ts",
"types": "lib/index.d.ts",
"devDependencies": {
"benchmark": "^2.1.4",
"jasmine": "^3.5.0",
"typescript": "3.8.3"
},
"scripts": {
"build": "yarn tsc",
"test": "npx jasmine",
"bench": "node ./src/bench.js"
},
"licence": "MIT"
}