forked from googlemaps/js-jest-mocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.34 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
{
"name": "@googlemaps/jest-mocks",
"version": "2.1.1",
"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 .",
"prepare": "rm -rf dist && rollup -c",
"test": "jest src/*",
"test:watch": "jest --watch src/*"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.3.0",
"@types/google.maps": "^3.47.2",
"@types/jest": "^27.4.0",
"@typescript-eslint/eslint-plugin": ">=4.33.0",
"@typescript-eslint/parser": ">=4.33.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^25.3.4",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.4.7",
"prettier": "^2.5.1",
"rollup": "^2.63.0",
"ts-jest": "^27.1.2",
"typedoc": "^0.22.10",
"typescript": "^4.5.4"
},
"publishConfig": {
"access": "public",
"registry": "https://wombat-dressing-room.appspot.com"
}
}