forked from googlemaps/google-maps-services-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.49 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@googlemaps/google-maps-services-js",
"version": "3.3.5",
"description": "Node.js client library for Google Maps API Web Services",
"keywords": [
"google",
"maps",
"googlemaps",
"geo",
"geocode",
"timezone",
"api",
"client",
"roads",
"directions",
"navigation"
],
"homepage": "https://github.com/googlemaps/google-maps-services-js",
"bugs": {
"url": "https://github.com/googlemaps/google-maps-services-js/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/googlemaps/google-maps-services-js.git"
},
"license": "Apache-2.0",
"author": "Google Inc.",
"contributors": [
{
"name": "Justin Poehnelt",
"email": "[email protected]"
}
],
"main": "./dist/index.js",
"files": [
"dist"
],
"scripts": {
"docs": "rm -rf docs/ && typedoc src/index.ts",
"prepare": "tsc",
"test": "jest src",
"test:e2e": "jest e2e",
"test:all": "jest"
},
"dependencies": {
"@googlemaps/url-signature": "^1.0.4",
"agentkeepalive": "^4.1.0",
"axios": "^0.24.0",
"query-string": "^7.0.1",
"retry-axios": "^2.2.1"
},
"devDependencies": {
"@types/jest": "^27.0.0",
"@types/node": "^17.0.1",
"jest": "^27.0.0",
"nock": "^13.0.4",
"prettier": "^2.0.5",
"ts-jest": "^27.0.5",
"typedoc": "^0.22.4",
"typescript": "^4.0.0"
},
"publishConfig": {
"registry": "https://wombat-dressing-room.appspot.com",
"access": "public"
}
}