-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
56 lines (56 loc) · 1.48 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
{
"name": "country-to-iso",
"version": "1.5.0",
"description": "Convert inconsistent country names and codes into ISO 3166-1 alpha-2.",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./src/country-to-code.d.ts",
"directories": {
"lib": "lib"
},
"devDependencies": {
"@types/country-list": "^2.1.0",
"@types/jest": "^26.0.24",
"@typescript-eslint/parser": "^4.33.0",
"country-list": "^2.2.0",
"countryjs": "^1.8.0",
"i18n-iso-countries": "^6.8.0",
"jest": "^26.6.3",
"replace-in-file": "^6.3.5",
"ts-jest": "^26.5.6",
"tslint": "^6.1.3",
"typescript": "^4.7.3"
},
"scripts": {
"build": "tsc -p tsconfig.json && tsc -p tsconfig-cjs.json && replace-in-file --configFile=replace-in-file.config.js",
"seed": "node lib/cjs/scripts/seed",
"generate": "node lib/cjs/scripts/generate",
"test": "jest",
"test-coverage": "jest --coverage",
"preversion": "npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nojacko/node-country-to-iso.git"
},
"author": "James Jackson",
"license": "MIT",
"bugs": {
"url": "https://github.com/nojacko/node-country-to-iso/issues"
},
"homepage": "https://github.com/nojacko/node-country-to-iso#readme",
"keywords": [
"iso",
"3166",
"iso 3166",
"iso 3166-1",
"iso 3166-1 alpha-2",
"iso 3166-1 alpha-3",
"alpha",
"alpha-2",
"alpha-3",
"numeric",
"country",
"countries"
]
}