forked from bondz/react-static-google-map
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.47 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
{
"name": "react-static-google-map",
"version": "0.5.5",
"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": "[email protected]:bondz/react-static-google-map.git"
},
"sideEffects": false,
"author": "Akinmade Bond <[email protected]>",
"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": {
"@testing-library/react": "9.3.0",
"@types/react": "16.9.5",
"babel-core": "6.26.0",
"babel-plugin-external-helpers": "6.22.0",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-plugin-transform-react-remove-prop-types": "0.4.24",
"babel-preset-env": "1.6.1",
"babel-preset-react": "6.24.1",
"babel-preset-stage-1": "6.24.1",
"jest": "21.2.1",
"prop-types": "15.7.2",
"raf": "3.4.1",
"react-dom": "16.0.1",
"rollup": "0.68.2",
"rollup-plugin-babel": "3.0.7",
"rollup-plugin-commonjs": "8.2.3",
"rollup-plugin-node-resolve": "3.4.0"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "jest",
"prepublish": "yarn build"
},
"files": [
"dist",
"typings/index.d.ts"
],
"jest": {
"setupFiles": [
"raf/polyfill"
]
}
}