-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
64 lines (64 loc) · 1.62 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
{
"name": "react-map-gl-geocoder",
"version": "2.2.0",
"description": "React wrapper for mapbox-gl-geocoder for use with react-map-gl",
"source": "src/index.js",
"main": "dist/index.js",
"module": "dist/index.m.js",
"unpkg": "dist/index.umd.js",
"scripts": {
"build": "microbundle build && npm run cp:css",
"watch": "microbundle watch && npm run cp:css",
"cp:css": "cp node_modules/@mapbox/mapbox-gl-geocoder/dist/mapbox-gl-geocoder.css dist/",
"format": "prettier --write 'src/**/*.js'",
"prepublishOnly": "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": "4.7.0",
"prop-types": "^15.7.2",
"viewport-mercator-project": "6.1.1"
},
"peerDependencies": {
"react-map-gl": ">= 4.0.0"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^6.2.2",
"eslint-plugin-cypress": "^2.11.1",
"eslint-plugin-react": "^7.11.1",
"husky": "^1.2.1",
"lint-staged": "^9.2.5",
"microbundle": "^0.12.3",
"prettier": "1.15.3"
}
}