-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.73 KB
/
package.json
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@pictalk/levenshtein.js",
"version": "2.0.2",
"description": "Efficient implementation of Levenshtein algorithm with locale-specific collator support.",
"main": "lib/index",
"types": "esm/index",
"module": "esm/index",
"scripts": {
"build:cjs": "tsc -p tsconfig.json",
"build:esm": "tsc -p tsconfig.esm.json",
"build": "rm -Rf lib esm && npm run build:cjs && npm run build:esm",
"prepublishOnly": "npm run build",
"prerelease": "npm run test",
"release": "standard-version",
"postrelease": "git push --follow-tags origin master && npm publish --access public",
"bench": "node bench/levenshtein.js",
"test:update": "jest --verbose -u",
"test": "jest --verbose"
},
"files": [
"lib",
"esm",
"flow-typed",
"src"
],
"keywords": [
"levenshtein",
"distance",
"string"
],
"jest": {
"testEnvironment": "node",
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(js|ts)$"
},
"author": "Ramesh Nair <[email protected]> (http://www.hiddentao.com/)",
"contributors": [
"Alex Regan <[email protected]>"
],
"license": "MIT",
"devDependencies": {
"@types/benchmark": "^1.0.31",
"@types/jest": "^23.3.9",
"@types/node": "^10.12.9",
"benchmark": "^2.1.4",
"fast-levenshtein": "^2.0.6",
"jest": "^23.6.0",
"levenshtein": "^1.0.5",
"levenshtein-component": "0.0.1",
"levenshtein-deltas": "^0.1.4",
"levenshtein-edit-distance": "^2.0.3",
"natural": "^0.6.2",
"prettier": "^1.15.2",
"standard-version": "^4.4.0",
"ts-jest": "^23.10.4",
"typescript": "^3.1.6"
},
"dependencies": {}
}