forked from voqum/svelte-flagicon
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.03 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.03 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
{
"author": "dustbort",
"bugs": {
"url": "https://github.com/dustbort/svelte-flagicon/issues"
},
"description": "Svelte component for flag-icon-css",
"devDependencies": {
"@rollup/plugin-node-resolve": "^7.1.3",
"flag-icon-css": "^3.4.6",
"glob": "^7.1.6",
"prettier": "^2.0.5",
"rollup": "^2.9.0",
"rollup-plugin-svelte": "^5.2.1",
"svelte": "^3.22.2"
},
"files": [
"src",
"dist"
],
"homepage": "https://github.com/dustbort/svelte-flagicon#readme",
"keywords": [
"svelte",
"icons",
"svg",
"flag",
"country"
],
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.mjs",
"name": "svelte-flagicon",
"repository": {
"type": "git",
"url": " git+https://github.com/dustbort/svelte-flagicon.git"
},
"scripts": {
"build": "rollup -c",
"build:script": "node ./scripts/build.js",
"prepublishOnly": "npm run build:script && npm run build"
},
"svelte": "src/index.js",
"version": "0.2.0",
"dependencies": {
"uuid": "^8.0.0"
}
}