forked from sirajulm/jest-google-maps-mock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 857 Bytes
/
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
{
"name": "jest-google-maps-mock",
"version": "1.0.7",
"description": "Jest mock for google maps",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/hupe1980/jest-google-maps-mock"
},
"keywords": [
"google",
"google-maps",
"maps",
"jest",
"mock"
],
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"build": "rimraf lib && babel src -d lib --delete-dir-on-start",
"build:watch": "rimraf lib && babel src -d lib --watch --delete-dir-on-start",
"test": "jest --env=jsdom",
"test:watch": "jest --watch --env=jsdom",
"prepare": "npm run build"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"babel-jest": "^26.6.3",
"jest": "^26.6.3",
"rimraf": "^2.7.1"
}
}