-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.08 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.08 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
{
"name": "@designsystemsinternational/flags",
"version": "0.2.0",
"description": "Country flags and their colors",
"author": "Martin Bravo <m@designsystems.international> (https://designsystems.international/)",
"homepage": "https://github.com/designsystemsinternational/flags",
"repository": "github:designsystemsinternational/flags",
"license": "MIT",
"main": "index.js",
"publishConfig": {
"access": "public"
},
"scripts": {
"editor": "cd editor && npm run dev",
"flags:get": "node scripts/flags.js",
"flags:optimize": "svgo -f ./bin/flag-raw -o ./flag",
"flags:copy": "rm -rf ./editor/data/flag/* && cp -r ./flag ./editor/data && cp ./bin/countries-with-flag.json ./editor/data",
"flags:update": "npm run flags:get && npm run flags:optimize && npm run flags:copy",
"test": "node test.js",
"release": "release-it"
},
"keywords": [
"flags",
"colors"
],
"devDependencies": {
"axios": "^0.21.1",
"ora": "^5.4.1",
"release-it": "^14.10.0",
"svgo": "^2.3.1",
"world-countries": "^4.0.0",
"xml2js": "^0.4.23"
}
}