forked from googlemaps/js-typescript-guards
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.54 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/typescript-guards",
"version": "2.0.5",
"description": "TypeScript guards for Google Maps Platform JavaScript.",
"keywords": [
"google",
"maps",
"typescript"
],
"homepage": "https://github.com/googlemaps/js-typescript-guards",
"bugs": {
"url": "https://github.com/googlemaps/js-typescript-guards/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/googlemaps/js-typescript-guards.git"
},
"license": "Apache-2.0",
"author": "Justin Poehnelt",
"type": "module",
"main": "dist/index.esm.js",
"module": "dist/index.esm.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:e2e": "jest --passWithNoTests e2e/*"
},
"devDependencies": {
"@googlemaps/jest-mocks": "^2.0.0",
"@rollup/plugin-typescript": "^11.0.0",
"@types/google.maps": "^3.46.0",
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": ">=2.25.0",
"@typescript-eslint/parser": ">=2.25.0",
"eslint": "^8.2.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^28.2.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.3.1",
"prettier": "^2.0.4",
"rollup": "^4.0.2",
"ts-jest": "^27.0.7",
"typedoc": "^0.26.2",
"typescript": "^4.2.2"
},
"publishConfig": {
"access": "public",
"registry": "https://wombat-dressing-room.appspot.com"
}
}