-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.14 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
{
"name": "google-maps-vitest-mocks",
"version": "1.0.7",
"description": "Vitest mocks for google maps",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "rm -rf dist/ && tsc -p tsconfig.build.json",
"lint": "eslint . --ext .ts",
"lint-and-fix": "eslint . --ext .ts --fix",
"test": "vitest run",
"coverage": "vitest run --coverage",
"tdd": "vitest dev",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RamonEspinosa/google-maps-vitest-mocks.git"
},
"keywords": [
"vitest",
"mocks",
"google",
"maps"
],
"author": "Ramon Espinosa",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/RamonEspinosa/google-maps-vitest-mocks/issues"
},
"homepage": "https://github.com/RamonEspinosa/google-maps-vitest-mocks#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"eslint": "^8.34.0",
"husky": "^8.0.0",
"prettier": "2.8.4",
"typescript": "^4.9.5"
},
"dependencies": {
"vitest": "^0.28.5"
},
"files": [
"dist"
]
}