-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.31 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.31 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@aashari/nodejs-geocoding",
"version": "2.7.2",
"description": "A lightweight TypeScript/Node.js library for geocoding and reverse geocoding operations with multilingual support",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "commonjs",
"scripts": {
"build": "tsc",
"test": "jest",
"test:coverage": "jest --coverage",
"lint": "eslint src --ext .ts --config eslint.config.mjs",
"format": "prettier --write 'src/**/*.ts' 'scripts/**/*.js'",
"publish:npm": "npm publish",
"update:check": "npx npm-check-updates",
"update:deps": "npx npm-check-updates -u && npm install --legacy-peer-deps",
"update:version": "node scripts/update-version.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aashari/nodejs-geocoding.git"
},
"keywords": [
"geocoding",
"reverse-geocoding",
"geolocation",
"maps",
"address",
"coordinates",
"latitude",
"longitude",
"google-maps"
],
"author": "aashari",
"license": "ISC",
"bugs": {
"url": "https://github.com/aashari/nodejs-geocoding/issues"
},
"homepage": "https://github.com/aashari/nodejs-geocoding#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"directories": {
"example": "examples"
},
"devDependencies": {
"@eslint/js": "^9.22.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^7.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.1",
"@semantic-release/npm": "^12.0.1",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.10",
"@typescript-eslint/eslint-plugin": "^8.26.1",
"@typescript-eslint/parser": "^8.26.1",
"eslint": "^9.22.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.2.3",
"jest": "^29.7.0",
"nodemon": "^3.1.9",
"npm-check-updates": "^17.1.15",
"prettier": "^3.5.3",
"semantic-release": "^24.2.3",
"ts-jest": "^29.2.6",
"typescript": "^5.8.2",
"typescript-eslint": "^8.26.1"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": [
"**/src/**/*.test.ts"
],
"collectCoverageFrom": [
"src/**/*.ts",
"!src/**/*.test.ts",
"!src/**/*.spec.ts"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/dist/",
"/coverage/"
],
"coverageReporters": [
"text",
"lcov",
"json-summary"
]
}
}