forked from googlemaps/google-maps-services-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.87 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
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@googlemaps/google-maps-services-js",
"version": "2.0.2",
"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 .",
"prepare": "tsc",
"test": "jest src",
"test:e2e": "jest e2e",
"test:all": "jest"
},
"dependencies": {
"agentkeepalive": "^4.1.0",
"axios": "^0.19.0",
"query-string": "^6.11.0",
"retry-axios": "^2.1.2"
},
"devDependencies": {
"@semantic-release/changelog": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.0.3",
"@semantic-release/release-notes-generator": "^9.0.0",
"@types/jest": "^25.0.25",
"@types/node": "^12.12.15",
"codecov": ">=3.6.5",
"jest": "^25.2.2",
"semantic-release": "^17.0.2",
"ts-jest": "^25.2.1",
"typedoc": "^0.16.11",
"typescript": "^3.7.4"
},
"publishConfig": {
"registry": "https://wombat-dressing-room.appspot.com",
"access": "public"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/github"
]
}
}