-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
72 lines (72 loc) · 2.12 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "react-static-google-map",
"description": "Reusable react component to load Google Static map images in your react app",
"version": "0.8.0",
"main": "dist/react-static-google-map.cjs.js",
"module": "dist/react-static-google-map.esm.js",
"browser": "dist/react-static-google-map.umd.js",
"repository": {
"type": "git",
"url": "https://github.com/bondz/react-static-google-map"
},
"sideEffects": false,
"author": "Bond <bonda@decagon.institute>",
"typings": "./typings/index.d.ts",
"license": "MIT",
"keywords": [
"react",
"static google map",
"google map"
],
"dependencies": {
"invariant": "^2.2.2",
"react": ">=0.14.x",
"react-promise": "2.0.0"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/plugin-external-helpers": "^7.14.5",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-export-namespace-from": "^7.14.5",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5",
"@babel/plugin-proposal-object-rest-spread": "^7.15.6",
"@babel/plugin-proposal-optional-chaining": "^7.14.5",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/preset-env": "^7.15.8",
"@babel/preset-react": "^7.14.5",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "12.1.2",
"@types/react": "17.0.30",
"babel-jest": "^27.3.1",
"babel-plugin-transform-react-remove-prop-types": "0.4.24",
"jest": "27.3.1",
"prop-types": "15.7.2",
"react-dom": "16.0.1",
"rollup": "2.58.0"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "jest",
"prepublishOnly": "yarn build",
"postpublish": "git push origin --all; git push origin --tags",
"postversion": "npm publish",
"preversion": "yarn test"
},
"files": [
"dist",
"typings/index.d.ts"
],
"jest": {
"setupFilesAfterEnv": [
"./jest.setup.js"
],
"testEnvironment": "jsdom"
},
"resolutions": {
"react": "16.0.0"
}
}