-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.66 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
60
61
62
{
"name": "get-country-codes",
"version": "0.0.2",
"description": "Fetches ISO 3166-1 country codes from https://www.iso.org/obp/ui/#search",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"get-country-codes": "./bin/cli.js"
},
"scripts": {
"start": "NODE_OPTIONS='--trace-warnings --trace-deprecation' ts-node src/cli.ts",
"build": "tsc --project ./tsconfig.json",
"lint": "eslint --ext .js,.ts .",
"lint:fix": "pnpm lint --fix",
"prepare": "pnpm lint && pnpm build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/takuma7/get-country-codes.git"
},
"keywords": [
"countries",
"iso-3166",
"iso-3166-1",
"iso-3166-1-alpha-2",
"iso-3166-1-alpha-3",
"iso-3166-1-numeric",
"ISO 3166",
"ISO 3166-1",
"ISO 3166-1 Alpha-2",
"ISO 3166-1 Alpha-3",
"ISO 3166-1 Numeric",
"country codes",
"codes"
],
"author": "takuma7",
"license": "MIT",
"bugs": {
"url": "https://github.com/takuma7/get-country-codes/issues"
},
"homepage": "https://github.com/takuma7/get-country-codes#readme",
"dependencies": {
"csv-stringify": "^5.6.2",
"ora": "^5.4.1",
"puppeteer": "^10.1.0",
"yargs": "^17.0.1"
},
"devDependencies": {
"@types/puppeteer": "^5.4.4",
"@types/yargs": "^17.0.2",
"@typescript-eslint/eslint-plugin": "^4.28.4",
"eslint": "^7.31.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"prettier": "^2.3.2",
"ts-node": "^10.1.0",
"tslib": "^2.3.0",
"typescript": "^4.3.5"
}
}