-
Notifications
You must be signed in to change notification settings - Fork 64
/
package.json
72 lines (72 loc) · 2.05 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
{
"name": "@googlemaps/js-api-loader",
"type": "commonjs",
"version": "1.16.9",
"description": "Wrapper for the loading of Google Maps JavaScript API script in the browser",
"keywords": [
"google",
"maps"
],
"homepage": "https://github.com/googlemaps/js-api-loader",
"bugs": {
"url": "https://github.com/googlemaps/js-api-loader/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/googlemaps/js-api-loader.git"
},
"license": "Apache-2.0",
"author": "Justin Poehnelt",
"main": "dist/index.umd.js",
"unpkg": "dist/index.min.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist/",
"src/"
],
"scripts": {
"docs": "typedoc src/index.ts && cp -r dist docs/dist && cp -r examples docs/examples",
"format": "eslint . --fix",
"lint": "eslint .",
"prepare": "rm -rf dist && rollup -c",
"test": "jest src/*",
"test:e2e": "jest e2e/*"
},
"devDependencies": {
"@babel/preset-env": "^7.9.5",
"@babel/runtime-corejs3": "^7.9.2",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-node-resolve": "^15.2.1",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^12.1.0",
"@types/google.maps": "^3.53.1",
"@types/jest": "^29.5.5",
"@types/selenium-webdriver": "^4.0.9",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"@typescript-eslint/parser": "^8.8.1",
"core-js": "^3.6.4",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^28.6.0",
"eslint-plugin-prettier": "^5.0.0",
"fast-deep-equal": "^3.1.3",
"geckodriver": "^5.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.0.3",
"rollup": "^4.6.1",
"selenium-webdriver": "^4.0.0-alpha.7",
"ts-jest": "^29.1.1",
"typedoc": "^0.26.5",
"typescript": "^5.5.4"
},
"publishConfig": {
"access": "public",
"registry": "https://wombat-dressing-room.appspot.com"
},
"prettier": {
"trailingComma": "es5"
}
}