forked from harpreetkhalsagtbit/country-state-city
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 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
73
74
75
76
77
78
{
"name": "country-state-city",
"version": "3.2.1",
"description": "Library for fetching Country, its States and Cities",
"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 && npm run minify",
"prepublish": "npm run build",
"lint": "eslint index.ts __test__ --fix",
"minify": "ts-node src/scripts/minify.ts",
"split-data":"ts-node src/scripts/splitLargeDatasetFiles-CSC.ts",
"update-data":"ts-node src/scripts/combineSplitFilesToMakeALargeDatasetFiles-CSC.ts",
"update-data-with-gz":"gz=true ts-node src/scripts/combineSplitFilesToMakeALargeDatasetFiles-CSC.ts"
},
"author": "[email protected]",
"license": "GPL-3.0",
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/harpreetkhalsagtbit/country-state-city.git"
},
"husky": {
"hooks": {
"pre-commit": "npm test",
"pre-push": "npm test"
}
},
"keywords": [
"Country",
"State",
"City",
"GeoLocation",
"Search",
"Filter"
],
"bugs": {
"url": "https://github.com/harpreetkhalsagtbit/country-state-city/issues"
},
"homepage": "https://github.com/harpreetkhalsagtbit/country-state-city#readme",
"devDependencies": {
"@types/jest": "^26.0.24",
"@types/node": "^16.18.11",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^3.4.1",
"husky": "^4.3.8",
"jest": "^26.6.3",
"prettier": "^2.8.3",
"ts-jest": "^26.5.6",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"files": [
"lib/"
],
"jest": {
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleDirectories": [
"node_modules",
"bower_components",
"src"
]
}
}