-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
48 lines (48 loc) · 1.17 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
{
"name": "@odusanya/african-countries",
"version": "3.0.0-rc.4",
"description": "JSON Library of countries in Africa and their country codes(ISO Alpha-2 and Alpha-3)",
"repository": "github:odusanya/african-countries",
"license": "MIT",
"keywords": [
"africa",
"africa country",
"african countries",
"african country code",
"countries in africa"
],
"type": "module",
"main": "./lib/main.cjs",
"module": "./lib/main.js",
"types": "./lib/main.d.ts",
"exports": {
".": {
"import": "./lib/main.js",
"require": "./lib/main.cjs"
}
},
"author": "Odusanya Tomi <https://github.com/odusanya>",
"contributors": [
"Odusanya Tomi <https://github.com/odusanya>"
],
"devDependencies": {
"@types/node": "^20.9.0",
"@vitest/coverage-v8": "^0.34.6",
"standard": "^14.3.4",
"typescript": "^5.2.2",
"vite": "^4.5.0",
"vite-plugin-dts": "^3.6.3",
"vitest": "^0.34.6"
},
"files": [
"lib"
],
"scripts": {
"dev": "vite",
"build": "rm -rf dist && tsc && vite build",
"preview": "vite preview",
"lint": "standard --fix",
"test": "vitest",
"coverage": "vitest run --coverage"
}
}