forked from googlemaps/google-maps-services-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.57 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
{
"name": "@google/maps",
"version": "1.1.0",
"author": "Google Inc.",
"description": "Node.js client library for Google Maps API Web Services",
"main": "./lib",
"contributors": [
{
"name": "Stephen Farrar",
"email": "step@google.com"
},
{
"name": "Stephen McDonald",
"email": "stephenmcd@google.com"
},
{
"name": "Justin Poehnelt",
"email": "jpoehnelt@google.com"
}
],
"scripts": {
"test:all": "jasmine && jasmine spec/e2e/*.js",
"test": "jasmine",
"e2e": "jasmine spec/e2e/*.js",
"jsdoc": "jsdoc -c docs/conf.json"
},
"repository": {
"type": "git",
"url": "https://github.com/googlemaps/google-maps-services-js.git"
},
"keywords": [
"google",
"maps",
"googlemaps",
"geo",
"geocode",
"timezone",
"api",
"client",
"roads",
"directions",
"navigation"
],
"license": "Apache-2.0",
"bin": {
"googlemaps": "bin/run.js"
},
"bugs": {
"url": "https://github.com/googlemaps/google-maps-services-js/issues"
},
"homepage": "https://github.com/googlemaps/google-maps-services-js",
"dependencies": {
"https-proxy-agent": "^3.0.0",
"uuid": ">=2.2.1"
},
"devDependencies": {
"codecov": "^3.5.0",
"jasmine": "^3.3.1",
"jsdoc": "^3.6.3",
"nyc": "^14.1.1",
"priorityqueuejs": "^1.0.0",
"q": "^1.4.1"
},
"files": [
"lib",
"bin"
],
"publishConfig": {
"registry": "https://wombat-dressing-room.appspot.com",
"access": "public"
},
"nyc": {
"exclude": [
"**/spec/**"
]
}
}