-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 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
66
67
68
69
70
71
72
73
74
75
76
{
"name": "country-cities",
"version": "1.0.7",
"description": "Countries, States, Cities Library",
"main": "./lib/cjs/index.js",
"module": "./lib/index.js",
"types": "./lib/index.d.ts",
"sideEffects": false,
"scripts": {
"test": "jest",
"build": "tsc -p tsconfig.json && tsc -p tsconfig-cjs.json",
"prepublish": "npm run build",
"lint": "eslint index.ts __test__ --fix"
},
"author": "[email protected]",
"license": "MIT",
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "https://github.com/nicholidev/country-cities/"
},
"keywords": [
"countries",
"states",
"cities",
"json",
"world",
"timezone",
"geoLocation",
"locations",
"latitude",
"longitude",
"iso",
"typescript",
"phoneCode"
],
"bugs": {
"url": "https://github.com/nicholidev/country-cities/issues"
},
"homepage": "https://nicholidev.github.io/country-cities-doc/",
"dependencies": {},
"devDependencies": {
"ts-node": "^10.7.0",
"@types/jest": "^26.0.19",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"eslint": "^7.17.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^4.3.6",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.4.4",
"ts-loader": "^9.2.3",
"typescript": "^4.3.2",
"@types/node": "^14.11.2"
},
"files": [
"lib/"
],
"jest": {
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleDirectories": [
"node_modules",
"bower_components",
"src"
]
}
}