forked from FGRibreau/node-unidecode
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 752 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 752 Bytes
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
{
"name": "unidecode-plus",
"description": "ASCII transliteration of Unicode text, with emoji support and smart spacing",
"keywords": [
"unidecode",
"unicode",
"utf8",
"ascii",
"transliteration",
"emoji"
],
"version": "1.0.5",
"repository": "https://github.com/kshetline/unidecode-plus.git",
"author": "Kerry Shetline <kerry@shetline.com>",
"main": "./unidecode",
"license": "MIT AND BSD-3-Clause AND Artistic-1.0-Perl",
"scripts": {
"test": "mocha **/*.mocha.js",
"lint": "jshint *.js */*.js",
"speed-compare": "node test/speed-compare.js"
},
"engines": {
"node": ">= 0.10"
},
"devDependencies": {
"@types/node": "^12.0.10",
"jshint": "^2.5.11",
"mocha": "^11.7.1"
}
}