-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.45 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.45 KB
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
{
"name": "@googlemaps/jest-mocks",
"version": "2.22.8",
"keywords": [
"google",
"maps",
"jest"
],
"homepage": "https://github.com/googlemaps/js-jest-mocks",
"bugs": {
"url": "https://github.com/googlemaps/js-jest-mocks/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/googlemaps/js-jest-mocks.git"
},
"license": "Apache-2.0",
"author": "Justin Poehnelt",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/*"
],
"scripts": {
"docs": "typedoc src/index.ts",
"format": "eslint . --fix",
"lint": "eslint .",
"prepack": "rm -rf dist && rollup -c",
"test": "jest src/*",
"test:watch": "jest --watch src/*"
},
"devDependencies": {
"@rollup/plugin-typescript": "^12.3.0",
"@types/google.maps": "^3.58.1",
"@types/jest": "^30.0.0",
"@typescript-eslint/eslint-plugin": ">=8.56.1",
"@typescript-eslint/parser": ">=8.54.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jest": "^29.15.0",
"eslint-plugin-prettier": "^5.5.5",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"prettier": "^3.8.1",
"rollup": "^4.59.0",
"ts-jest": "^29.4.6",
"tslib": "^2.8.1",
"typedoc": "^0.28.17",
"typescript": "^5.6.3"
},
"publishConfig": {
"access": "public",
"registry": "https://wombat-dressing-room.appspot.com"
},
"prettier": {
"trailingComma": "es5"
}
}