forked from rnmapbox/maps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 2.91 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
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
{
"name": "@react-native-mapbox-gl/maps",
"description": "A Mapbox GL react native module for creating custom maps",
"version": "8.3.0",
"publishConfig": {
"access": "public"
},
"author": "React Native Mapbox Team",
"main": "./javascript/index.js",
"keywords": [
"gl",
"ios",
"android",
"mapbox",
"react-native"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/react-native-mapbox-gl/maps"
},
"scripts": {
"fetch:style:spec": ". ./scripts/download-style-spec.sh",
"generate": "node ./scripts/autogenerate",
"test": "npm run lint && npm run unittest",
"unittest": "jest",
"unittest:single": "jest --testNamePattern",
"lint": "eslint . --fix",
"prepare": "yarn build:plugin",
"test:plugin": "expo-module test plugin",
"build:plugin": "tsc --build plugin",
"lint:plugin": "eslint plugin/src/*"
},
"peerDependencies": {
"prop-types": ">=15.5.8",
"react": ">=16.6.1",
"react-native": ">=0.59.9"
},
"dependencies": {
"@expo/config-plugins": "^3.0.2",
"@mapbox/geo-viewport": ">= 0.4.0",
"@turf/along": ">= 4.0.0 <7.0.0",
"@turf/distance": ">= 4.0.0 <7.0.0",
"@turf/helpers": ">= 4.6.0 <7.0.0",
"@turf/length": ">= 4.6.0 <7.0.0",
"@turf/nearest-point-on-line": ">= 4.0.0 <7.0.0",
"@types/geojson": "^7946.0.7",
"debounce": "^1.2.0"
},
"devDependencies": {
"@babel/core": "7.5.0",
"@babel/plugin-proposal-class-properties": "7.10.4",
"@babel/plugin-transform-runtime": "7.14.5",
"@babel/runtime": "7.11.2",
"@react-native-community/eslint-config": "^3.0.1",
"@sinonjs/fake-timers": "^8.0.1",
"@testing-library/react-native": "^7.2.0",
"@typescript-eslint/eslint-plugin": "^4.0.0",
"@typescript-eslint/parser": "^4.14.0",
"babel-core": "6.26.3",
"babel-eslint": "^10.0.1",
"documentation": "13.2.5",
"ejs": "^3.1.3",
"ejs-lint": "^1.1.0",
"eslint": "^7.32.0 ",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-fp": "^2.3.0",
"eslint-plugin-import": "2.23.4",
"expo-module-scripts": "^2.0.0",
"husky": "4.3.8",
"jest": "25.5.4",
"jest-cli": "25.5.4",
"lint-staged": "^11.0.0",
"metro-react-native-babel-preset": "0.49.1",
"node-dir": "0.1.17",
"prettier": "^2.0.4",
"react": "16.8.3",
"react-docgen": "^5.0.0-beta.1",
"react-native": "0.59.10",
"react-test-renderer": "16.8.3",
"typescript": "^4.4.3"
},
"jest": {
"preset": "react-native",
"collectCoverageFrom": [
"javascript/**/*.js"
],
"setupFiles": [
"./setup-jest.js",
"./__tests__/__mocks__/react-native.mock.js"
],
"modulePathIgnorePatterns": [
"example",
"__tests__/__mocks__",
"fixtures"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run generate"
}
},
"lint-staged": {
"*.js": [
"yarn lint"
]
}
}