forked from mapbox/react-geocoder
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.53 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.53 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
{
"name": "@mapbox/react-geocoder",
"version": "3.1.0",
"description": "a mapbox geocoder component",
"main": "build/index.js",
"scripts": {
"test": "jest --env=jsdom",
"start": "webpack --watch",
"build": "babel --copy-files --plugins add-module-exports --plugins transform-es2015-modules-umd src/ --out-dir ./build --source-maps",
"prepush": "yarn build"
},
"repository": {
"type": "git",
"url": "git@github.com:mapbox/react-geocoder.git"
},
"keywords": [
"react",
"react-component",
"geocoder",
"flux",
"mapbox",
"geo"
],
"author": "Tom MacWright",
"license": "ISC",
"bugs": {
"url": "https://github.com/mapbox/react-geocoder/issues"
},
"homepage": "https://github.com/mapbox/react-geocoder",
"peerDependencies": {
"react": "^16.3.2",
"react-dom": "^16.3.2",
"styled-components": "^3.2.6",
"styled-icons": "^2.3.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-plugin-styled-components": "^1.5.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"jest": "^23.4.2",
"react-test-renderer": "^16.4.1",
"standard": "^11.0.1",
"webpack": "^4.5.0",
"webpack-cli": "^2.0.13"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"styled-icons": "^2.3.1"
}
}