-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.06 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
{
"name": "@aashari/nodejs-geocoding",
"version": "2.1.0",
"description": "NodeJS library that encode and decode geolocation which helps you convert latitude and longitude to formatted address, or formatted_address to latitude and longitude",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "jest && tsc",
"prepare": "npm run build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aashari/nodejs-geocoding.git"
},
"keywords": [
"geocoding",
"reverse-geocoding"
],
"author": "aashari",
"license": "ISC",
"bugs": {
"url": "https://github.com/aashari/nodejs-geocoding/issues"
},
"homepage": "https://github.com/aashari/nodejs-geocoding#readme",
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"directories": {
"example": "examples"
},
"devDependencies": {
"@types/node": "^18.15.1",
"@types/jest": "^27.5.2",
"jest": "^27.5.1",
"ts-jest": "^27.1.5",
"typescript": "^4.9.5"
}
}