forked from indic-transliteration/sanscript.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 2.73 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 2.73 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
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "@sanskrit-coders/sanscript",
"version": "1.2.2",
"description": "Sanscript is a transliteration library for Indian languages. It supports the most popular Indian scripts and several different romanization schemes. Although Sanscript focuses on Sanskrit transliteration, it has partial support for other languages and is easy to extend.",
"main": "sanscript.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "node scripts/build.js",
"dist": "npm run build && npm run transpile",
"lint": "node ./node_modules/.bin/eslint '**/*.js'",
"prepare": "npm run lint && npm run validate && npm run dist && npm run test",
"test": "qunit",
"transpile": "node ./node_modules/.bin/babel sanscript.es6.js --out-file sanscript.js",
"validate": "node ./node_modules/.bin/ajv validate -s src/sanscript.schema.json -d 'src/schemes/*/*.json'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/indic-transliteration/sanscript.js.git"
},
"keywords": [
"ahom",
"assamese",
"avestan",
"balinese",
"bengali",
"bhaisuki",
"brahmi",
"brahmi_tamil",
"burmese",
"chakma",
"cham",
"cyrillic",
"devanagari",
"dogra",
"gondi_gunjala",
"gondi_masaram",
"grantha",
"grantha_pandya",
"gujarati",
"gurmukhi",
"javanese",
"kannada",
"khamti_shan",
"kharoshti",
"khmer",
"khom_thai",
"khudawadi",
"kolkata",
"lao",
"lao_pali",
"lepcha",
"limbu",
"mahajani",
"malayalam",
"manipuri",
"marchen",
"modi",
"mon",
"mro",
"multani",
"newa",
"ol_chiki",
"oriya",
"persian_old",
"phags_pa",
"ranjana",
"rejang",
"rohingya",
"sanskritOCR",
"shan",
"sharada",
"siddham",
"sinhala",
"slp1",
"sora_sompeng",
"sundanese",
"tai_laing",
"takri",
"tamil",
"tamil_extended",
"tamil_superscripted",
"telugu",
"thai",
"tibetan",
"tirhuta_maithili",
"urdu",
"vattelutu",
"velthuis",
"wancho",
"warang_citi",
"wx",
"zanbazar_square",
"Harvard-Kyoto",
"International Alphabet of Sanskrit Transliteration",
"National Library at Kolkata",
"Sanskrit Library Phonetic"
],
"author": "Arun Prasad and Sanskrit coders",
"license": "MIT",
"bugs": {
"url": "https://github.com/indic-transliteration/sanscript.js/issues"
},
"homepage": "https://github.com/indic-transliteration/sanscript.js#readme",
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"ajv-cli": "^5.0.0",
"eslint": "^7.31.0",
"qunit": "^2.16.0"
},
"dependencies": {
"toml": "^2.3.6"
}
}