summaryrefslogtreecommitdiff
path: root/tools/node_modules/eslint/node_modules/fast-levenshtein
diff options
context:
space:
mode:
authorLuigi Pinca <luigipinca@gmail.com>2021-03-30 08:24:00 +0200
committerLuigi Pinca <luigipinca@gmail.com>2021-04-03 07:19:54 +0200
commite7e328db44c8c475575fafd1f5f40f4656917789 (patch)
tree2cd2f4a2f167a282e6b037a7354590a1d1368521 /tools/node_modules/eslint/node_modules/fast-levenshtein
parentfeb60f818e80d09208cc0558cc1cfe35f7ddc99d (diff)
downloadnode-new-e7e328db44c8c475575fafd1f5f40f4656917789.tar.gz
tools: update ESLint to 7.23.0
PR-URL: https://github.com/nodejs/node/pull/37979 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Beth Griggs <bgriggs@redhat.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
Diffstat (limited to 'tools/node_modules/eslint/node_modules/fast-levenshtein')
-rw-r--r--tools/node_modules/eslint/node_modules/fast-levenshtein/package.json48
1 files changed, 19 insertions, 29 deletions
diff --git a/tools/node_modules/eslint/node_modules/fast-levenshtein/package.json b/tools/node_modules/eslint/node_modules/fast-levenshtein/package.json
index 85c3001e0b..5b4736d453 100644
--- a/tools/node_modules/eslint/node_modules/fast-levenshtein/package.json
+++ b/tools/node_modules/eslint/node_modules/fast-levenshtein/package.json
@@ -1,15 +1,17 @@
{
- "author": {
- "name": "Ramesh Nair",
- "email": "ram@hiddentao.com",
- "url": "http://www.hiddentao.com/"
- },
- "bugs": {
- "url": "https://github.com/hiddentao/fast-levenshtein/issues"
- },
- "bundleDependencies": false,
- "deprecated": false,
+ "name": "fast-levenshtein",
+ "version": "2.0.6",
"description": "Efficient implementation of Levenshtein algorithm with locale-specific collator support.",
+ "main": "levenshtein.js",
+ "files": [
+ "levenshtein.js"
+ ],
+ "scripts": {
+ "build": "grunt build",
+ "prepublish": "npm run build",
+ "benchmark": "grunt benchmark",
+ "test": "mocha"
+ },
"devDependencies": {
"chai": "~1.5.0",
"grunt": "~0.4.1",
@@ -23,27 +25,15 @@
"lodash": "^4.0.1",
"mocha": "~1.9.0"
},
- "files": [
- "levenshtein.js"
- ],
- "homepage": "https://github.com/hiddentao/fast-levenshtein#readme",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/hiddentao/fast-levenshtein.git"
+ },
"keywords": [
"levenshtein",
"distance",
"string"
],
- "license": "MIT",
- "main": "levenshtein.js",
- "name": "fast-levenshtein",
- "repository": {
- "type": "git",
- "url": "git+https://github.com/hiddentao/fast-levenshtein.git"
- },
- "scripts": {
- "benchmark": "grunt benchmark",
- "build": "grunt build",
- "prepublish": "npm run build",
- "test": "mocha"
- },
- "version": "2.0.6"
-} \ No newline at end of file
+ "author": "Ramesh Nair <ram@hiddentao.com> (http://www.hiddentao.com/)",
+ "license": "MIT"
+}