forked from react-native-web-community/react-native-web-maps
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·57 lines (57 loc) · 1.29 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": "react-native-web-maps",
"version": "0.3.0",
"description": "React Native for Web implementation of react-native-maps",
"main": "dist/index.js",
"main-es": "src/index.js",
"repository": {
"type": "git",
"url": "git@github.com:react-native-web-community/react-native-web-maps.git"
},
"author": {
"name": "Aurore Malherbes",
"email": "aurorem@bam.tech",
"url": "https://github.com/aurorem"
},
"license": "MIT",
"keywords": [
"react-native",
"react-native-web",
"react-native-web-maps"
],
"scripts": {
"prepublish": "yarn build",
"build": "mkdir -p dist && babel src --out-dir dist",
"test:lint": "yarn eslint . --quiet",
"test": "yarn test:lint"
},
"babel": {
"presets": [
"react-native"
]
},
"files": [
"dist",
"src",
"yarn.lock"
],
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-react-native": "^4.0.0",
"eslint": "^5.15.3",
"eslint-config-bambi": "^1.4.0",
"prettier": "^1.16.4",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-native-web": "^0.1.1",
"webpack": "^3.6.0"
},
"peerDependencies": {
"react-native-web": "*"
},
"dependencies": {
"react-google-maps": "^9.4.5"
}
}