-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
65 lines (65 loc) · 1.7 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
{
"name": "country-list-with-dial-code-and-flag",
"version": "5.0.6",
"description": "Country list with dial code and flag",
"main": "dist/index.js",
"scripts": {
"dev": "webpack serve --config webpack.cdn.config.js",
"build": "rm -rf dist && webpack && webpack --config webpack.cdn.config.js",
"format": "prettier --write \"src/**/*.ts\" \"__tests__/**/*.ts\"",
"lint": "eslint ./src/**/*.ts \"__tests__/**/*.ts\"",
"lint:fix": "eslint ./src/**/*.ts \"__tests__/**/*.ts\" --fix",
"test": "jest",
"prepare": "husky install"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{ts,tsx,json}": [
"npm run format",
"npm run lint:fix"
]
},
"license": "ISC",
"keywords": [
"country",
"flag",
"dial code",
"phone",
"country code",
"npm",
"javascript"
],
"repository": {
"type": "git",
"url": "https://github.com/necessarylion/country-list-with-dial-code-and-flag"
},
"author": {
"name": "AJ"
},
"devDependencies": {
"@types/google-libphonenumber": "^7.4.23",
"@types/jest": "^29.2.0",
"@types/node": "^18.11.5",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"eslint": "^8.37.0",
"google-libphonenumber": "^3.2.32",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.0",
"jest": "^29.2.2",
"jest-environment-jsdom": "^29.5.0",
"lint-staged": "^13.2.0",
"prettier": "^2.7.1",
"terser-webpack-plugin": "^5.3.7",
"ts-jest": "^29.0.3",
"ts-loader": "^9.4.2",
"typescript": "^4.8.4",
"webpack": "^5.77.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.13.1"
}
}