-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathpackage.json
42 lines (42 loc) · 1.05 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
{
"name": "country-locale-map",
"version": "1.9.8",
"homepage": "https://worldcountries.rocketmanmorrison.ca",
"description": "Provides mapping between country codes and provides default country locales. Includes optional fuzzy matching for country name.",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "nodemon --exec \"mocha -R min\"",
"lint": "eslint index.js",
"format": "prettier --write \"src/**/*.+(js|md|ts|css|sass|less|graphql|yml|yaml|scss|json|vue)\""
},
"keywords": [
"country",
"locale",
"alpha",
"numeric",
"currency",
"emoji",
"fuzzy",
"capital",
"ISO-3166",
"ISO-639"
],
"repository": {
"type": "git",
"url": "https://github.com/atnmorrison/country-locale-map"
},
"author": "atnmorrison",
"license": "MIT",
"dependencies": {
"fuzzball": "^2.1.2"
},
"devDependencies": {
"chai": "^4.2.0",
"countries-list": "^2.6.1",
"country-code-lookup": "^0.0.14",
"eslint": "^6.8.0",
"mocha": "^10.2.0",
"nodemon": "^3.0.2"
}
}