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
| {
| "name": "unidecode",
| "description": "ASCII transliterations of Unicode text",
| "keywords": [
| "unidecode",
| "unicode",
| "utf8"
| ],
| "version": "0.1.8",
| "homepage": "http://blog.fgribreau.com/2012/05/unidecode-for-javascript-nodejs.html",
| "dependencies": {},
| "repository": "git@github.com:FGRibreau/node-unidecode.git",
| "author": "Francois-Guillaume Ribreau <npm@fgribreau.com> (http://fgribreau.com)",
| "main": "./unidecode",
| "licenses": [
| {
| "type": "BSD",
| "url": "http://github.com/FGRibreau/node-unidecode/blob/master/LICENSE"
| }
| ],
| "scripts": {
| "test": "mocha",
| "lint": "jshint *.js */*.js"
| },
| "engines": {
| "node": ">= 0.4.12"
| },
| "devDependencies": {
| "jshint": "^2.5.11",
| "mocha": "^2.0.1"
| }
| }
|
|