-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
33 lines (33 loc) · 918 Bytes
/
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
{
"name": "fold-to-ascii",
"version": "5.0.1",
"description": "A JavaScript port of the Apache Lucene ASCII Folding Filter that converts alphabetic, numeric, and symbolic Unicode characters which are not in the first 127 ASCII characters (the \"Basic Latin\" Unicode block) into a ASCII equivalents, if they exist.",
"main": "lib/ascii-folder.js",
"scripts": {
"test": "qunit"
},
"repository": {
"type": "git",
"url": "https://github.com/mplatt/fold-to-ascii"
},
"keywords": [
"ascii",
"sanitize",
"diacritics",
"unicode",
"folding",
"ligatures"
],
"author": "Moritz Platt <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/mplatt/fold-to-ascii/issues"
},
"homepage": "https://github.com/mplatt/fold-to-ascii",
"devDependencies": {
"qunit": "2.19.1"
},
"engines": {
"node": ">= 6.3.1"
}
}