-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.11 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
37
38
39
40
41
42
43
44
45
46
47
{
"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": "https://github.com/hanwencheng/CommonSubstrings.git"
},
"main": "lib/commonSubstrings.js",
"source": "src/commonSubstrings.ts",
"types": "lib/commonSubstrings.d.ts",
"exports": {
".": {
"types": "./lib/commonSubstrings.d.ts",
"import": "./lib/commonSubstrings.js",
"require": "./lib/commonSubstrings.js"
}
},
"files": [
"lib"
],
"engines": {
"node": ">=20"
},
"sideEffects": false,
"devDependencies": {
"@types/node": "^26.1.1",
"benchmark": "^2.1.4",
"jasmine": "^6.3.0",
"typescript": "^7.0.2"
},
"overrides": {
"lodash": "^4.17.21"
},
"scripts": {
"build": "tsc",
"test": "npm run build && jasmine",
"bench": "npm run build && node ./src/bench.js",
"prepack": "npm test"
},
"license": "MIT"
}