This repository has been archived by the owner on Apr 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpackage.json
78 lines (78 loc) · 1.77 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
{
"author": {
"name": "Denis Seleznev",
"email": "[email protected]",
"url": "https://github.com/hcodes"
},
"name": "yaspeller",
"main": "./lib/yaspeller.js",
"bin": {
"yaspeller": "./bin/yaspeller"
},
"description": "Search tool typos in the text, files and websites",
"version": "10.0.1",
"license": "MIT",
"homepage": "https://github.com/hcodes/yaspeller",
"repository": {
"type": "git",
"url": "git://github.com/hcodes/yaspeller.git"
},
"bugs": {
"url": "https://github.com/hcodes/yaspeller/issues"
},
"keywords": [
"typo",
"typos",
"text",
"опечатки",
"текст",
"yandex",
"speller",
"Яндекс.Спеллер",
"Yandex.Speller"
],
"dependencies": {
"async": "^3.2.5",
"commander": "^3.0.0",
"entities": "^4.5.0",
"escape-html": "^1.0.3",
"eyo-kernel": "^2.5.6",
"glob": "^10.3.10",
"isutf8": "^4.0.0",
"lilconfig": "^2.1.0",
"marked": "^10.0.0",
"minimatch": "^9.0.3",
"node-fetch": "^2.7.0",
"picocolors": "^1.0.0",
"secure-json-parse": "^2.7.0",
"strip-json-comments": "^3.1.1",
"xml2js": "^0.6.2",
"yandex-speller": "^6.0.0"
},
"devDependencies": {
"chai": "^4.3.10",
"eslint": "^8.53.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"sinon": "^17.0.1"
},
"engines": {
"node": ">=16"
},
"scripts": {
"test": "npm run-script eslint && npm run-script unit-test-coverage",
"eslint": "eslint .",
"yaspeller": "node bin/yaspeller .",
"unit-test": "mocha",
"unit-test-coverage": "nyc --reporter=lcov --reporter=text-summary mocha"
},
"files": [
"bin",
"lib",
".yaspellerrc.default.json",
"CHANGELOG.md",
"LICENSE.md",
"README.md",
"README.ru.md"
]
}