-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.55 KB
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
{
"name": "@munkacsimark/react-flag",
"version": "0.1.0",
"description": "Simple flag component for React which uses svg or emojis, based on ISO-3166.",
"type": "module",
"source": "./src/Flag.tsx",
"exports": "./dist/Flag.modern.js",
"main": "./dist/Flag.cjs",
"module": "./dist/Flag.module.js",
"types": "./dist/Flag.d.ts",
"scripts": {
"build": "microbundle --jsx React.createElement",
"test": "jest",
"format": "prettier --write \"./{src|tests}/*\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/munkacsimark/react-flag.git"
},
"keywords": [
"flagpack",
"flag",
"countryflags",
"flagdata",
"iso-3166",
"react-flag",
"flagemoji"
],
"author": "Mark Munkacsi <markmunkacsi@protonmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/munkacsimark/react-flag/issues"
},
"homepage": "https://github.com/munkacsimark/react-flag#readme",
"devDependencies": {
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@types/jest": "^26.0.24",
"@types/react": "^17.0.15",
"@types/react-dom": "^17.0.9",
"jest": "^27.0.6",
"jest-transform-stub": "^2.0.0",
"microbundle": "^0.13.3",
"prettier": "^2.3.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"ts-jest": "^27.0.4",
"typescript": "^4.3.5"
},
"dependencies": {
"a11y-react-emoji": "^1.1.3"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom",
"transform": {
".+\\.svg$": "jest-transform-stub"
}
}
}