-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.23 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
{
"name": "iso3166-lookup",
"version": "1.1.0",
"description": "ISO 3166-1:2020 country and codes lookup. The supported country code types are alpha-2, alpha-3 and num-3.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rimraf dist",
"pretest": "npm run build",
"test": "mocha -r ts-node/register test/test.ts",
"build": "npm run clean && tsc",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/omkartapale/iso3166-lookup.git"
},
"keywords": [
"ISO 3166-1",
"country codes",
"alpha-2",
"alpha-3",
"num-3",
"country numeric codes",
"ISO 3166",
"country code lookup"
],
"author": "Omkar Tapale <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/omkartapale/iso3166-lookup/issues"
},
"homepage": "https://github.com/omkartapale/iso3166-lookup#readme",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/omkartapale"
},
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"chai": "^4.3.6",
"mocha": "^10.0.0",
"rimraf": "^3.0.2",
"ts-node": "^10.8.1",
"typescript": "^4.7.4"
}
}