-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.32 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
55
56
57
58
59
60
{
"name": "diacritics-transliterator",
"version": "0.3.0",
"description": "Diacritic transliteration tool using the diacritics.io API",
"main": "src/main.js",
"scripts": {
"start": "nodemon test/test.js",
"test": "npm run lint && npm run mocha",
"lint": "eslint src/",
"mocha": "nyc --reporter=lcov --reporter=text mocha",
"install": "node src/install.js",
"postinstall": "node src/install.js"
},
"repository": {
"type": "git",
"url": "https://github.com/diacritics/node-diacritics-transliterator.git"
},
"keywords": [
"accents",
"alphabet",
"continent",
"diacritic",
"search",
"language",
"variant",
"database",
"latinize",
"decompose",
"normalize",
"transliterate",
"placeholders",
"RegExp",
"unicode",
"utf8"
],
"author": "The Diacritics Authors",
"maintainers": [
{
"name": "Julian Kühnel",
"url": "https://github.com/julmot"
},
{
"name": "Rob Garrison",
"url": "https://github.com/Mottie"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/diacritics/node-diacritics-transliterator/issues"
},
"devDependencies": {
"eslint": "^5.0.0",
"mocha": "^5.0.0",
"nodemon": "^1.14.12",
"nyc": "^12.0.1"
},
"dependencies": {
"node-fetch": "^2.0.0"
}
}