forked from SamSamskies/react-map-gl-geocoder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.49 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
{
"name": "react-map-gl-geocoder",
"version": "1.8.1",
"description": "React wrapper for mapbox-gl-geocoder for use with react-map-gl",
"main": "dist/index.js",
"scripts": {
"build": "babel src --out-dir dist --source-maps inline",
"format": "prettier --write 'src/**/*.js'",
"prepublish": "npm run build"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"npm run format",
"eslint",
"git add"
]
},
"repository": {
"type": "git",
"url": "[email protected]:SamSamskies/react-map-gl-geocoder.git"
},
"keywords": [
"react",
"mapbox",
"mapbox-gl",
"mapgl",
"react-map-gl",
"geocoder"
],
"author": "Sam Samskies <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/SamSamskies/react-map-gl-geocoder/issues"
},
"homepage": "https://github.com/SamSamskies/react-map-gl-geocoder",
"dependencies": {
"@mapbox/mapbox-gl-geocoder": "^2.3.0",
"prop-types": "^15.6.2",
"viewport-mercator-project": "6.1.1"
},
"peerDependencies": {
"react-map-gl": ">= 4.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"eslint": "^5.11.0",
"eslint-plugin-react": "^7.11.1",
"husky": "^1.2.1",
"lint-staged": "^8.1.0",
"prettier": "1.15.3"
}
}