-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
68 lines (68 loc) · 1.37 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
{
"name": "country-flags-svg",
"version": "2.0.0-beta.1",
"description": "A list of countries with url links to a svg image which you can simply use in your web application",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
},
"./package.json": "./package.json"
},
"sideEffects": false,
"files": [
"dist"
],
"scripts": {
"clean": "rimraf dist coverage",
"test": "jest",
"test-coverage": "jest --coverage",
"build": "tsup",
"prepare": "npm run clean && npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ronatskiy/country-flags-svg.git"
},
"keywords": [
"country",
"flags",
"svg",
"country-flags"
],
"author": "Roman Onatskiy",
"license": "MIT",
"bugs": {
"url": "https://github.com/ronatskiy/country-flags-svg/issues"
},
"homepage": "https://github.com/ronatskiy/country-flags-svg#readme",
"devDependencies": {
"@types/jest": "29.5.3",
"codecov": "3.8.3",
"coveralls": "3.1.1",
"jest": "29.6.1",
"rimraf": "3.0.2",
"ts-jest": "29.1.1",
"tsup": "7.1.0",
"typescript": "5.1.6"
},
"engines": {
"node": ">=16.0.0"
},
"tsup": {
"dts": true,
"treeshake": true,
"minify": true,
"target": "node16",
"format": [
"cjs",
"esm"
],
"entry": [
"src/index.ts"
],
"clear": true
}
}