-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathpackage.json
47 lines (47 loc) · 951 Bytes
/
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
{
"name": "emoji-flags",
"version": "1.3.0",
"description": "return emoji flag symbol for country code",
"main": "index.js",
"scripts": {
"test": "mocha"
},
"engines": {
"node": ">=0.10.0"
},
"bin": {
"emoji-flags": "cli.js"
},
"files": [
"index.js",
"data.json",
"cli.js"
],
"keywords": [
"emoji",
"countries",
"flag",
"country code",
"emoji flag",
"country flag",
"ISO 3166-1",
"ISO 3166-1-alpha-2"
],
"repository": {
"type": "git",
"url": "https://github.com/matiassingers/emoji-flags"
},
"author": "Matias Singers <[email protected]> (http://mts.io)",
"license": "MIT",
"bugs": {
"url": "https://github.com/matiassingers/emoji-flags/issues"
},
"homepage": "https://github.com/matiassingers/emoji-flags",
"dependencies": {
"columnify": "1.5.1",
"lodash.find": "3.2.1"
},
"devDependencies": {
"mocha": "2.2.5"
}
}