-
Notifications
You must be signed in to change notification settings - Fork 54
/
package.json
79 lines (79 loc) · 2.33 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
{
"name": "@googlemaps/react-wrapper",
"version": "1.1.42",
"description": "React component that wraps the loading of Google Maps JavaScript API.",
"keywords": [
"google",
"maps",
"react"
],
"homepage": "https://github.com/googlemaps/react-wrapper",
"bugs": {
"url": "https://github.com/googlemaps/react-wrapper/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/googlemaps/react-wrapper.git"
},
"license": "Apache-2.0",
"author": "Justin Poehnelt",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"browser": "dist/index.umd.js",
"types": "dist/src/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"build": "rm -rf dist && rollup -c && npm run build:examples",
"build:examples": "rm -rf public && rollup -c rollup.config.examples.js",
"docs": "typedoc src/index.tsx && npm run build:examples && cp -r public docs/public",
"format": "prettier *config.json *.js src/* --write && eslint src/* --fix",
"lint": "gts check src/*",
"prepare": "rollup -c",
"test": "jest -i src/*",
"test:e2e": "jest e2e/*"
},
"dependencies": {
"@googlemaps/js-api-loader": "^1.16.6"
},
"devDependencies": {
"@babel/preset-react": "^7.14.5",
"@rollup/plugin-babel": "^6.0.0",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-html": "^1.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@rollup/plugin-replace": "^5.0.0",
"@rollup/plugin-typescript": "^11.0.0",
"@testing-library/dom": "^10.0.0",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^16.0.0",
"@types/google.maps": "^3.45.6",
"@types/jest": "^29.5.12",
"@types/react": ">=16.8.0",
"@types/react-dom": "^18.0.0",
"eslint-plugin-jest": "^28.2.0",
"eslint-plugin-react": "^7.22.0",
"gts": "^5.3.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.2.5",
"react": ">=16.8.0",
"react-dom": "^18.0.0",
"rollup": "^2.40.0",
"rollup-plugin-filesize": "^10.0.0",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^29.1.2",
"tslib": "^2.1.0",
"typedoc": "^0.26.5",
"typescript": "^4.9.5"
},
"peerDependencies": {
"react": ">=16.8.0"
},
"publishConfig": {
"access": "public",
"registry": "https://wombat-dressing-room.appspot.com"
}
}