-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
55 lines (55 loc) · 1.32 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
{
"name": "country-to-currency",
"version": "1.1.5",
"description": "Map country codes (ISO 3166-1 alpha-2) to their default currency codes (ISO 4217)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/thiagodp/country-to-currency.git"
},
"homepage": "https://github.com/thiagodp/country-to-currency",
"bugs": {
"url": "https://github.com/thiagodp/country-to-currency/issues"
},
"author": {
"name": "Thiago Delgado Pinto",
"email": "[email protected]"
},
"keywords": [
"country",
"currency",
"code",
"iso-3166",
"iso-4217",
"locale",
"i18n",
"javascript",
"typescript",
"browser",
"nodejs",
"denojs"
],
"dependencies": {},
"devDependencies": {
"country-list": "latest",
"currency-codes": "latest",
"microbundle": "^0.15.1"
},
"files": [
"index.*"
],
"source": "index.ts",
"main": "index.js",
"browser": "index.umd.js",
"unpkg": "index.umd.js",
"module": "index.esm.js",
"types": "index.d.ts",
"scripts": {
"test": "echo \"No tests\"",
"gen": "node generate.js",
"build": "microbundle --no-sourcemap",
"all": "pnpm run gen && pnpm run build",
"preversion": "pnpm run all",
"postversion": "echo \"Don't forget to push the tags and publish the version.\""
}
}