-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.4 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
{
"name": "emoji-country-code",
"version": "1.1.0",
"description": "Transform ISO 3166-1 country codes to Emoji flags",
"main": "cjs/index.js",
"module": "esm/index.js",
"browser": "umd/index.js",
"repository": "github:fa7ad/emoji-country-code",
"author": "Fahad Hossain <8bit.demoncoder@gmail.com> (https://fa7ad.github.io/)",
"keywords": [
"country",
"code",
"emoji",
"flag",
"ISO",
"3166-1"
],
"homepage": "https://github.com/fa7ad/emoji-country-code",
"bugs": {
"url": "https://github.com/fa7ad/emoji-country-code/issues"
},
"license": "MIT",
"private": false,
"files": [
"cjs/*",
"esm/*",
"umd/*",
"src/*"
],
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"@babel/register": "^7.6.2",
"ava": "^2.4.0",
"babel-eslint": "^10.0.3",
"eslint": "^6.5.1",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"rollup": "^3.29.5",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-terser": "^5.1.2"
},
"scripts": {
"build": "rollup -c",
"build:dev": "NODE_ENV=development yarn build",
"lint": "eslint .",
"test": "ava --verbose",
"prepare": "yarn build"
},
"ava": {
"require": [
"@babel/register"
]
}
}