-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.63 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.63 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "geo-data-api",
"version": "1.0.3",
"description": "Generate a static JSON API for geographic data including countries, states, and cities that can be hosted on any CDN. Transform geographic datasets into a small, cacheable, CDN-ready API with search capabilities.",
"main": "src/data-processor.js",
"scripts": {
"build": "node src/data-processor.js && npm run build:docs && npm run build:demo",
"build:pretty": "node src/data-processor.js --pretty",
"build:docs": "node src/docs-updater.js",
"build:demo": "node src/demo-copier.js",
"clean": "node -e \"require('fs').rmSync('dist/api', { recursive: true, force: true })\"",
"dev": "npm run clean && npm run build",
"dev:pretty": "npm run clean && npm run build:pretty",
"dev:serve": "npm run dev && npm run serve",
"serve": "node src/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/asterodigital/geo-data-api.git"
},
"bugs": {
"url": "https://github.com/asterodigital/geo-data-api/issues"
},
"homepage": "https://geo-data-api.asterodigital.com",
"files": [
"dist/"
],
"keywords": [
"api",
"json",
"psql",
"state",
"states",
"cities",
"region",
"country",
"regions",
"countries",
"generator",
"hacktoberfest",
"world-regions",
"geographical-data",
"country-state-city",
"countries-states-cities"
],
"license": "MIT",
"author": {
"name": "Astero Digital",
"url": "https://asterodigital.com"
},
"dependencies": {
"fs-extra": "^11.3.1",
"lodash": "^4.17.21"
},
"devDependencies": {
"prettier": "^3.6.2"
}
}