forked from thekelvinliu/country-code-emoji
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.55 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
59
{
"name": "country-code-emoji",
"version": "2.2.0",
"description": "convert country codes (ISO 3166-1 alpha-2) to corresponding emoji flags (unicode regional indicator symbols)",
"main": "lib/index.js",
"repository": "github:thekelvinliu/country-code-emoji",
"author": "kelvin liu <kelvin@thekelvinliu.com>",
"license": "MIT",
"module": "src/index.js",
"types": "types/index.d.ts",
"exports": {
"import": "./src/index.js",
"require": "./lib/index.js"
},
"homepage": "https://github.com/thekelvinliu/country-code-emoji#readme",
"bugs": {
"url": "https://github.com/thekelvinliu/country-code-emoji/issues"
},
"scripts": {
"build": "esbuild src/index.js --format=cjs --outdir=lib --target=node10",
"clean": "rm -rf coverage lib types",
"lint": "eslint .",
"prepublishOnly": "yarn build && yarn types",
"reset": "rm -rf node_modules package-lock.json yarn.lock",
"test": "jest",
"types": "tsc"
},
"devDependencies": {
"esbuild": "^0.8.27",
"eslint": "^7.16.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^30.7.9",
"eslint-plugin-prettier": "^3.3.0",
"husky": "^4.3.6",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"typescript": "^4.1.3"
},
"files": [
"lib",
"src",
"types"
],
"keywords": [
"country",
"code",
"emoji",
"flag",
"ISO",
"3166-1",
"alpha-2",
"regional",
"indicator",
"symbols"
]
}