UNPKG

1.9 kBJSONView Raw
1{
2 "author": {
3 "name": "Denis Seleznev",
4 "email": "hcodes@yandex.ru",
5 "url": "https://github.com/hcodes"
6 },
7 "name": "yaspeller",
8 "main": "./lib/yaspeller.js",
9 "bin": {
10 "yaspeller": "./bin/yaspeller"
11 },
12 "description": "Search tool typos in the text, files and websites",
13 "version": "4.0.0",
14 "license": "MIT",
15 "homepage": "https://github.com/hcodes/yaspeller",
16 "repository": {
17 "type": "git",
18 "url": "git://github.com/hcodes/yaspeller.git"
19 },
20 "bugs": {
21 "url": "https://github.com/hcodes/yaspeller/issues"
22 },
23 "keywords": [
24 "typo",
25 "typos",
26 "text",
27 "опечатки",
28 "текст",
29 "yandex",
30 "speller",
31 "Яндекс.Спеллер",
32 "Yandex.Speller"
33 ],
34 "dependencies": {
35 "async": "^2.5.0",
36 "chalk": "^2.0.1",
37 "commander": "^2.11.0",
38 "entities": "^1.1.1",
39 "escape-html": "^1.0.3",
40 "eyo-kernel": "^2.2.0",
41 "glob": "^7.1.2",
42 "isutf8": "^2.0.1",
43 "minimatch": "^3.0.4",
44 "request": "^2.81.0",
45 "showdown": "^1.7.1",
46 "strip-json-comments": "^2.0.1",
47 "xml2js": "^0.4.17",
48 "yandex-speller": "^2.0.1"
49 },
50 "devDependencies": {
51 "chai": "~4.1.0",
52 "eslint": "~4.6.1",
53 "istanbul": "~0.4.5",
54 "jscs": "~3.0.7",
55 "mocha": "~3.5.0",
56 "sinon": "~3.2.1"
57 },
58 "engines": {
59 "node": ">=4"
60 },
61 "scripts": {
62 "test": "npm run-script eslint && npm run-script jscs && npm run-script unit-test-coverage",
63 "jscs": "./node_modules/.bin/jscs .",
64 "eslint": "./node_modules/.bin/eslint .",
65 "yaspeller": "node bin/yaspeller .",
66 "unit-test": "./node_modules/.bin/mocha -u bdd -R spec --recursive test",
67 "unit-test-coverage": "./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha -- -u bdd -R spec --recursive test"
68 },
69 "files": [
70 "bin",
71 "lib",
72 ".yaspellerrc.default.json",
73 "LICENSE.md"
74 ]
75}