-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
50 lines (50 loc) · 1.2 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
{
"name": "diacritics-database",
"version": "1.0.0",
"keywords": [
"diacritic",
"diacritics",
"database",
"decompose",
"replace",
"mapping",
"javascript"
],
"license": "MIT",
"homepage": "http://diacritics.io/",
"author": "The Diacritics Authors",
"maintainers": [
{
"name": "Julian Kühnel",
"url": "https://github.com/julmot"
},
{
"name": "Rob Garrison",
"url": "https://github.com/Mottie"
}
],
"description": "A reliable diacritics database with their associated ASCII characters",
"repository": "diacritics/database",
"bugs": {
"url": "https://github.com/diacritics/database/issues"
},
"scripts": {
"build": "npm run lint && node build/build.js",
"build:und": "node build/build-undetermined.js",
"deploy": "node build/deploy.js",
"extract": "node build/extract.js",
"lint": "eslint ./"
},
"devDependencies": {
"@julmot/git-branch-deploy": "^1.0.0",
"ajv": "^6.0.0",
"cldr-data": "^34.0.0",
"del": "^3.0.0",
"eslint": "^5.0.0",
"glob": "^7.1.2",
"simple-git": "^1.77.0",
"strip-combining-marks": "^1.0.0",
"strip-json-comments": "^2.0.1"
},
"private": true
}