-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
78 lines (78 loc) · 2.18 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/region-lookup",
"version": "1.0.0",
"description": "Axios based methods wrapping Region Lookup service",
"keywords": [
"google",
"maps",
"googlemaps",
"regions",
"place id"
],
"homepage": "https://github.com/googlemaps/js-region-lookup",
"bugs": {
"url": "https://github.com/googlemaps/js-region-lookup/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/googlemaps/js-region-lookup.git"
},
"license": "Apache-2.0",
"author": "Google Inc.",
"contributors": [
{
"name": "Justin Poehnelt",
"email": "[email protected]"
}
],
"main": "./dist/index.esm.js",
"browser": "./dist/index.iife.js",
"module": "./dist/index.esm.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build:esm": "esbuild src/index.ts --bundle --outfile=dist/index.esm.js --external:axios --format=esm",
"build:iife": "esbuild src/index.ts --bundle --minify --outfile=dist/index.iife.js --format=iife",
"build:types": "tsc --emitDeclarationOnly",
"build": "run-p build:*",
"clean": "rimraf docs/ dist/",
"docs": "rimraf docs/ && typedoc src/index.ts",
"lint": "eslint src e2e --fix",
"prepare": "run-s clean build",
"test:e2e": "jest e2e",
"test:lint": "eslint src e2e",
"test:types": "tsc --noEmit",
"test:unit": "jest src --passWithNoTests",
"test": "run-p test:*"
},
"peerDependencies": {
"axios": "^0.26.0"
},
"devDependencies": {
"@types/jest": "^27.0.0",
"@types/node": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"axios": "^0.26.0",
"esbuild": "^0.14.28",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-googlemaps": "^1.4.9",
"eslint-plugin-jest": "^26.1.3",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.0.0",
"nock": "^13.0.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.5",
"typedoc": "^0.22.4",
"typescript": "^4.0.0"
},
"publishConfig": {
"registry": "https://wombat-dressing-room.appspot.com",
"access": "public"
}
}