-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
57 lines (57 loc) · 1.49 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
{
"name": "country-emoji",
"version": "2.0.0-beta.1",
"description": "Converts between country names, ISO 3166-1 codes and flag emojis.",
"main": "dist/main.js",
"type": "module",
"files": [
"dist/main.js",
"dist/lib.js",
"countries.json",
"index.d.ts"
],
"types": "./index.d.ts",
"scripts": {
"lint": "xo && check-dts",
"build": "babel src -d dist",
"test": "c8 ava && c8 report --reporter=text-lcov > coverage.lcov",
"test-ava": "ava",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/meeDamian/country-emoji.git"
},
"keywords": [
"flag",
"emoji",
"country",
"ISO3166-1"
],
"author": "Damian Mee <countries@meedamian.com> (https://meedamian.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/meeDamian/country-emoji/issues"
},
"homepage": "https://github.com/meeDamian/country-emoji#readme",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.10.5",
"@babel/eslint-parser": "^7.25.1",
"@babel/plugin-syntax-import-attributes": "^7.24.7",
"@babel/preset-env": "^7.10.4",
"ava": "^6.1.3",
"c8": "^10.1.2",
"check-dts": "^0.8.2",
"xo": "^0.59.3"
},
"xo": {
"parser": "@babel/eslint-parser",
"rules": {
"unicorn/prefer-export-from": "off",
"unicorn/prevent-abbreviations": "off",
"unicorn/no-lonely-if": "off",
"no-use-extend-native/no-use-extend-native": "off"
}
}
}