-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
58 lines (58 loc) · 1.19 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
{
"name": "eyo",
"description": "CLI for restoring the letter «ё» (yo) in russian texts",
"version": "5.0.0",
"author": {
"name": "Denis Seleznev",
"email": "[email protected]",
"url": "https://github.com/e2yo/eyo"
},
"bin": {
"eyo": "./bin/eyo.js"
},
"homepage": "https://github.com/e2yo/eyo",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/e2yo/eyo.git"
},
"keywords": [
"yo",
"yoficator",
"ёфикатор",
"ёфикация"
],
"engines": {
"node": ">= 10.0"
},
"dependencies": {
"chalk": "^4.0.0",
"charset": "^1.0.1",
"commander": "^5.0.0",
"exit": "^0.1.2",
"eyo-kernel": "^2.5.6",
"glob": "^7.1.6",
"iconv-lite": "^0.5.1",
"isutf8": "^2.1.0",
"node-fetch": "^2.6.0"
},
"files": [
"bin",
"lib",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.8.0",
"mocha": "^7.1.1",
"nyc": "^14.1.1"
},
"scripts": {
"test": "npm run-script eslint && npm run-script unit-test-coverage",
"eslint": "eslint .",
"unit-test": "mocha",
"unit-test-coverage": "nyc mocha"
}
}