-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.03 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.03 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
{
"name": "geonames-data",
"version": "1.0.1",
"description": "Scripts to download and parse geonames.org data",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"download": "node src/download.js",
"generate-all": "npm run generate-json; npm run generate-ts; npm run generate-cjs; npm run generate-esm",
"generate-json": "node src/generate-json.js",
"generate-ts": "node src/generate-ts.js",
"generate-cjs": "node src/generate-cjs.js",
"generate-esm": "node src/generate-esm.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/nojacko/geonames-data.git"
},
"author": "James Jackson",
"license": "MIT",
"bugs": {
"url": "https://github.com/nojacko/geonames-data/issues"
},
"homepage": "https://github.com/nojacko/geonames-data#readme",
"devDependencies": {
"@eslint/js": "^9.24.0",
"eslint": "^9.24.0",
"globals": "^16.0.0",
"typescript-eslint": "^8.29.1"
}
}