-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathpackage.json
44 lines (44 loc) · 921 Bytes
/
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
{
"name": "@mapbox/react-geocoder",
"version": "2.5.0",
"description": "a mapbox geocoder component",
"main": "index.js",
"scripts": {
"test": "tape test.js",
"start": "watchify example/site.js -o example/bundle.js & st -nc"
},
"repository": {
"type": "git",
"url": "git@github.com:mapbox/react-geocoder.git"
},
"browserify": {
"transform": [
"babelify"
]
},
"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",
"devDependencies": {
"browserify": "^6.2.0",
"st": "^0.5.2",
"tape": "^4.6.2",
"watchify": "^2.1.0"
},
"dependencies": {
"xhr": "^1.17.0",
"babelify": "^6.0.0",
"react": "0.13.x"
}
}