-
Notifications
You must be signed in to change notification settings - Fork 640
/
package.json
81 lines (81 loc) · 2.02 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
79
80
81
{
"name": "@googlemaps/google-maps-services-js",
"version": "3.4.0",
"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",
"src"
],
"scripts": {
"build": "tsc",
"docs": "rm -rf docs/ && typedoc src/index.ts",
"prepack": "npm run build",
"pretest": "npm run build",
"test": "jest --runInBand --collectCoverage ./src/* && npm run test:loading",
"test:loading": "./test-module-loading.sh",
"test:e2e": "jest --runInBand ./e2e/*",
"test:all": "jest --runInBand",
"format": "eslint . --fix",
"lint": "eslint ."
},
"dependencies": {
"@googlemaps/url-signature": "^1.0.4",
"agentkeepalive": "^4.1.0",
"axios": "^1.5.1",
"query-string": "<8.x",
"retry-axios": "<3.x"
},
"devDependencies": {
"@types/jest": "^29.5.5",
"@types/node": "^22.1.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^6.7.4",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^28.5.0",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.7.0",
"nock": "^13.3.4",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"typedoc": "^0.26.2",
"typescript": "^5.2.2"
},
"publishConfig": {
"registry": "https://wombat-dressing-room.appspot.com",
"access": "public"
},
"prettier": {
"trailingComma": "es5"
}
}