-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.25 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "country-to-aws-region",
"officialName": "country-to-aws-region",
"version": "1.0.3",
"description": "JS library that helps get the closest AWS region from a country code",
"summary": "JS library that helps get the closest AWS region from a country code",
"main": "lib/index.js",
"module": "esm/index.js",
"unpkg": "dist/country-to-aws-region.min.js",
"browser": "dist/country-to-aws-region.min.js",
"scripts": {
"update-data": "node update-data.mjs",
"build:umd": "rimraf ./dist && rollup -c && npm run size",
"build:cjs": "rimraf ./lib && tsc --module commonjs --outDir lib",
"build:esm": "rimraf ./esm && tsc --module ESNext --outDir esm",
"build": "npm run build:cjs && npm run build:esm && npm run build:umd",
"size": "limit-size",
"test": "jest",
"lint": "eslint src update-data.mjs --ext .js,.ts",
"lint-fix": "eslint src update-data.mjs --ext .js,.ts --fix"
},
"files": [
"dist",
"esm",
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Zeryther/country-to-aws-region.git"
},
"author": {
"name": "Mehdi Baaboura",
"email": "[email protected]",
"url": "https://github.com/Zeryther"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Zeryther/country-to-aws-region/issues"
},
"homepage": "https://github.com/Zeryther/country-to-aws-region#readme",
"keywords": [
"aws",
"region",
"country",
"code",
"iso",
"iso2",
"cdn",
"geoip"
],
"limit-size": [
{
"path": "dist/country-to-aws-region.min.js",
"limit": "8 Kb",
"gzip": true
}
],
"devDependencies": {
"@lopatnov/rollup-plugin-uglify": "^2.1.5",
"@rollup/plugin-node-resolve": "^15.0.0",
"@rollup/plugin-typescript": "^9.0.1",
"@types/jest": "^29.2.0",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"eslint": "^8.25.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.3.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.2.1",
"limit-size": "^0.1.4",
"node-fetch": "^3.2.10",
"rimraf": "^3.0.2",
"rollup": "^3.2.3",
"ts-jest": "^29.0.3",
"tslib": "^2.4.0",
"typescript": "^4.8.4"
}
}