-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
32 lines (32 loc) · 1006 Bytes
/
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
{
"name": "react-geocode",
"version": "1.0.0-alpha.1",
"description": "A module to transform a description of a location (i.e. street address, town name, etc.) into geographic coordinates (i.e. latitude and longitude) and vice versa.",
"main": "dist/index.js",
"types": "types/index.d.ts",
"src": "src/index.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/shukerullah/react-geocode.git"
},
"keywords": [
"google",
"geocode",
"geocoder",
"geocoding"
],
"author": "Pir Shukarulalh Shah <[email protected]> (http://www.shukarullah.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/shukerullah/react-geocode/issues"
},
"homepage": "https://github.com/shukerullah/react-geocode#readme",
"scripts": {
"build": "tsc && uglifyjs --compress --mangle --output ./dist/index.js -- ./dist/index.js"
},
"devDependencies": {
"@types/node": "^20.6.2",
"typescript": "^4.9.5",
"uglify-js": "^3.17.4"
}
}