-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.09 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@hidden-finder/didyoumean",
"version": "1.1.0",
"description": "provides functions for comparing and calculating the similarity between two strings using various methods.",
"type": "module",
"source": "./src/index.ts",
"main": "./dist/index.cjs",
"publishConfig": {
"source": "./src/index.ts",
"main": "./dist/index.cjs"
},
"umd:main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"exports": {
"require": "./dist/index.cjs",
"default": "./dist/index.modern.js"
},
"types": "./dist/index.d.ts",
"scripts": {
"prepublish": "npm run lint",
"lint": "eslint \"./src/**/*.ts\"",
"test": "jest --coverage"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
],
"@babel/preset-typescript"
]
},
"jest": {
"moduleFileExtensions": [
"ts",
"js",
"mjs"
],
"transform": {
"^.+\\.ts$": "ts-jest"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/hidden-finder/didyoumean.git"
},
"keywords": [
"compare",
"comparison",
"didyoumean",
"diff",
"difference",
"distance",
"edit",
"find",
"fuzzy",
"leven",
"levenshtein",
"match",
"matching",
"similar",
"similarity",
"string"
],
"author": "hidden-finder",
"license": "MIT",
"bugs": {
"url": "https://github.com/hidden-finder/didyoumean/issues"
},
"homepage": "https://github.com/hidden-finder/didyoumean",
"files": [
"dist"
],
"devDependencies": {
"@babel/core": "^7.22.20",
"@babel/preset-env": "^7.22.20",
"@babel/preset-typescript": "^7.22.15",
"@types/jest": "^29.5.5",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"babel-jest": "^29.7.0",
"eslint": "^8.0.1",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"typescript": "^4.9.0"
}
}