forked from reggie3/react-native-webview-leaflet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 3.7 KB
/
package.json
File metadata and controls
126 lines (126 loc) · 3.7 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"main": "index.js",
"private": false,
"name": "react-native-webview-leaflet",
"version": "3.1.50",
"scripts": {
"prod": "npm run clean && SET NODE_ENV=PROD && webpack",
"dev": "npm run clean && SET NODE_ENV=DEV && webpack -p",
"clean": "rimraf ./dist",
"test": "jest",
"test-watch": "jest --watch"
},
"description": "A React Native component that uses a React Native WebView to provide a Leaflet map.",
"repository": {
"type": "git",
"url": "git+https://github.com/reggie3/react-native-webview-leaflet.git"
},
"keywords": [
"react-native",
"leaflet",
"expo",
"webview"
],
"author": "Reginald Johnson",
"license": "MIT",
"bugs": {
"url": "https://github.com/reggie3/react-native-webview-leaflet/issues"
},
"homepage": "https://github.com/reggie3/react-native-webview-leaflet#readme",
"dependencies": {
"geolib": "^2.0.24",
"is-valid-coordinates": "^1.0.0",
"leaflet": "^1.3.1",
"leaflet.markercluster": "^1.3.0",
"lodash.uniqby": "^4.7.0",
"prop-types": "^15.6.0",
"react-leaflet": "^2.0.0-rc.1",
"util": "^0.10.3"
},
"peerDependencies": {
"react": "16.3.1",
"react-dom": "^16.3.1",
"react-native": "^0.57.1"
},
"devDependencies": {
"assert": "^1.4.1",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.3",
"babel-jest": "^22.4.3",
"babel-loader": "^7.1.4",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-es2015-arrow-functions": "^6.22.0",
"babel-plugin-transform-regenerator": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"clean-webpack-plugin": "^0.1.19",
"css-loader": "^1.0.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.3",
"eslint": "^4.19.1",
"eslint-plugin-react": "^7.7.0",
"file-loader": "^1.1.11",
"gulp": "^4.0.0",
"gulp-bump": "^3.1.0",
"gulp-cli": "^2.0.1",
"gulp-concat": "^2.6.1",
"gulp-intercept": "^0.1.0",
"gulp-json-editor": "^2.2.1",
"gulp-publish": "^0.8.7",
"gulp-run": "^1.7.1",
"gulp-run-command": "^0.0.9",
"gulp-sequence": "^1.0.0",
"gulp-util": "^3.0.8",
"html-webpack-inline-source-plugin": "^0.0.10",
"html-webpack-plugin": "^3.2.0",
"identity-obj-proxy": "^3.0.0",
"image-webpack-loader": "^4.2.0",
"jest": "^22.4.3",
"jest-css-modules": "^1.1.0",
"jest-enzyme": "^6.0.0",
"jest-expo": "^28.0.0",
"jest-react-native": "^18.0.0",
"react-addons-test-utils": "^15.6.2",
"react-native-mock": "^0.3.1",
"react-testing-library": "^1.9.3",
"regenerator-runtime": "^0.11.1",
"style-loader": "^0.23.0",
"webpack": "^4.6.0",
"webpack-clear-console": "^1.0.3",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^2.10.1"
},
"jest": {
"preset": "jest-expo",
"setupTestFrameworkScriptFile": "./node_modules/jest-enzyme/lib/index.js",
"testRegex": "__tests__/(.*).test.js$",
"setupFiles": [
"./__tests__/setup.js"
],
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleDirectories": [
"node_modules",
"bower_components",
"shared"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less)$": "<rootDir>/__mocks__/styleMock.js"
},
"unmockedModulePathPatterns": [
"node_modules/react/",
"node_modules/enzyme/"
],
"transform": {
"^.+\\.jsx?$": "babel-jest",
"\\.(png)$": "<rootDir>/__mocks__/fileMock.js"
}
}
}