-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.14 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
{
"name": "iso-3166-utils",
"author": "Pedro Filho",
"description": "A helper to get country codes following the ISO 3316",
"version": "0.1.4",
"license": "MIT",
"repository": "https://github.com/pedroapfilho/iso-3166-utils.git",
"keywords": [
"ISO 3166",
"country",
"helper"
],
"bugs": {
"url": "https://github.com/pedroapfilho/iso-3166-utils/issues"
},
"homepage": "https://github.com/pedroapfilho/iso-3166-utils#readme",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"country": "./dist/country",
"subdivision": "./dist/subdivision"
},
"sideEffects": false,
"scripts": {
"start": "tsc --watch",
"build": "tsc",
"test": "vitest",
"coverage": "vitest run --coverage",
"generate": "node --experimental-specifier-resolution=node --loader ts-node/esm generators/index.ts"
},
"devDependencies": {
"@types/jest": "^29.4.0",
"@types/node": "^22.10.1",
"@vitest/coverage-v8": "2.1.8",
"puppeteer": "^23.10.1",
"ts-node": "^10.9.1",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"engines": {
"node": ">=16"
}
}