-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.24 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
{
"name": "@skip405/bel-lat",
"version": "2.0.1",
"repository": {
"type": "git",
"url": "https://github.com/skip405/bel-lat.git"
},
"description": "Convert cyrillic Belarusian characters to Latin characters using transliteration. Can transliterate in accordance with the \"Instruction on transliteration of geographical names\" or in accordance with the rules of the Belarusian Latin alphabet (Łacinka).",
"exports": "./index.js",
"main": "index.js",
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"engines": {
"node": ">=12"
},
"bugs": {
"url": "https://github.com/skip405/bel-lat/issues",
"email": "skip405@gmail.com"
},
"files": [
"LICENSE.md",
"index.js"
],
"type": "module",
"keywords": [
"transliterate",
"transliteration",
"belarusian",
"string",
"text",
"lacinka",
"latin",
"latinize",
"convert",
"replace",
"be",
"by",
"беларуская мова",
"лацінка"
],
"author": {
"name": "Alex Bondarev",
"email": "skip405@gmail.com",
"url": "https://alexbondarev.com"
},
"jest": {
"transform": {}
},
"license": "MIT",
"devDependencies": {
"jest": "^29.5.0"
}
}