forked from rxaviers/cldr-data-downloader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.13 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
{
"name": "cldr-data-downloader",
"version": "0.3.0",
"keywords": [
"unicode",
"CLDR",
"JSON",
"data",
"install",
"download",
"fetch"
],
"description": "Download tool for Unicode CLDR JSON data",
"homepage": "https://github.com/rxaviers/cldr-data-downloader",
"repository": {
"type": "git",
"url": "git://github.com/rxaviers/cldr-data-downloader.git"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/rxaviers/cldr-data-downloader/blob/master/LICENSE-MIT"
}
],
"author": {
"name": "Rafael Xavier de Souza",
"email": "[email protected]",
"url": "http://rafael.xavier.blog.br"
},
"main": "index.js",
"bin": {
"cldr-data-downloader": "./bin/download.sh"
},
"scripts": {
"test": "grunt"
},
"dependencies": {
"adm-zip": "0.4.4",
"mkdirp": "0.5.0",
"nopt": "3.0.x",
"npmconf": "2.0.9",
"progress": "1.1.8",
"q": "1.0.1",
"request": "~2.74.0",
"request-progress": "0.3.1"
},
"devDependencies": {
"grunt": "0.4.x",
"grunt-contrib-jshint": "0.10.x",
"grunt-dco": "0.0.3",
"matchdep": "*"
}
}