-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
72 lines (72 loc) · 1.95 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
69
70
71
72
{
"name": "@amplifiedhq/countries-atlas",
"version": "1.4.15",
"description": "Uncover the world with a single lightweight library - countries, codes, currencies, flags, languages, cities, and more 🌎",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rm -rf dist && tsc && copyfiles flags/**/*.{png,svg,css,scss} dist",
"format": "prettier --write \"src/**/*.(js|ts)\"",
"lint": "eslint src --ext .js,.ts",
"lint:fix": "eslint src --fix --ext .js,.ts",
"test": "jest --config jest.config.js",
"sync": "python3 scripts/sync.py",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint && npm run sync",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "https://github.com/amplifiedhq/countries-atlas.git"
},
"contributors": [
{
"name": "Josiah Endurance",
"email": "[email protected]"
},
{
"name": "Abdulrazaq Adewale",
"email": "[email protected]"
}
],
"keywords": [
"internationalization",
"i18n",
"countries",
"country",
"country-codes",
"geography",
"states",
"provinces",
"cities",
"continents",
"flags",
"languages",
"currencies",
"timezones",
"countries-atlas"
],
"author": "AmplifiedHQ",
"license": "MIT",
"bugs": {
"url": "https://github.com/amplifiedhq/countries-atlas/issues"
},
"homepage": "https://github.com/amplifiedhq/countries-atlas#readme",
"devDependencies": {
"@types/jest": "29.4.0",
"@typescript-eslint/eslint-plugin": "5.54.0",
"@typescript-eslint/parser": "5.52.0",
"copyfiles": "^2.4.1",
"eslint": "8.35.0",
"eslint-plugin-jest": "27.2.1",
"jest": "29.4.3",
"prettier": "2.8.4",
"ts-jest": "29.0.5",
"typescript": "4.9.5"
},
"files": [
"dist/**/*"
]
}