-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.09 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.09 KB
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
{
"name": "eyo",
"description": "CLI for restoring the letter «ё» (yo) in russian texts",
"version": "6.1.1",
"author": {
"name": "Denis Seleznev",
"email": "hcodes@yandex.ru",
"url": "https://github.com/e2yo/eyo"
},
"type": "module",
"bin": {
"eyo": "./bin/eyo.mjs"
},
"homepage": "https://github.com/e2yo/eyo",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/e2yo/eyo.git"
},
"keywords": [
"yo",
"yoficator",
"ёфикатор",
"ёфикация"
],
"engines": {
"node": ">= 18.0"
},
"dependencies": {
"chalk": "^5.6.2",
"commander": "^14.0.3",
"eyo-kernel": "^4.1.1",
"glob": "^13.0.6"
},
"devDependencies": {
"eslint": "^10.2.1",
"@eslint/js": "^10.0.1",
"globals": "^17.5.0",
"jest": "^30.3.0"
},
"files": [
"bin",
"lib",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"scripts": {
"test": "npm run-script eslint && npm run-script unit-test",
"eslint": "eslint .",
"unit-test": "NODE_OPTIONS=--experimental-vm-modules jest ."
}
}