-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.04 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
{
"name": "ucd-full",
"version": "16.0.0",
"main": "./ucd.js",
"description": "Encoding the Unicode Character Database as json files",
"license": "Apache-2.0",
"keywords": [
"internationalization",
"i18n",
"globalization",
"g11n",
"locale",
"Unicode"
],
"email": "[email protected]",
"author": {
"name": "Edwin Hoogerbeets",
"web": "http://www.translationcircle.com/",
"email": "[email protected]"
},
"contributors": [
{
"name": "Edwin Hoogerbeets",
"email": "[email protected]"
}
],
"files": [
"README.md",
"LICENSE",
"**/*.json"
],
"repository": {
"type": "git",
"url": "https://github.com/iLib-js/UCD.git"
},
"scripts": {
"dist": "bash build.sh",
"test": "echo Success",
"clean": "rm -rf json UCD *.tgz"
},
"devDependencies": {
"ilib-data-utils": "^1.2.0",
"mkdirp": "^3.0.1"
}
}