-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
57 lines (57 loc) · 1.43 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
{
"name": "@googlemaps/jest-mocks",
"version": "2.22.0",
"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.1.1",
"@types/google.maps": "^3.58.1",
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": ">=8.14.0",
"@typescript-eslint/parser": ">=8.14.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.9.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.3.3",
"rollup": "^4.27.2",
"ts-jest": "^29.2.5",
"typedoc": "^0.26.11",
"typescript": "^5.6.3"
},
"publishConfig": {
"access": "public",
"registry": "https://wombat-dressing-room.appspot.com"
},
"prettier": {
"trailingComma": "es5"
}
}