forked from mapbox/mapbox-gl-geocoder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.54 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
{
"name": "@mapbox/mapbox-gl-geocoder",
"version": "2.3.0",
"description": "A geocoder control for Mapbox GL JS",
"main": "lib/index.js",
"style": "lib/mapbox-gl-geocoder.css",
"scripts": {
"start": "budo debug/index.js --live -- -t brfs ",
"prepublish": "NODE_ENV=production && mkdir -p dist && browserify --standalone MapboxGeocoder lib/index.js | uglifyjs -c -m > dist/mapbox-gl-geocoder.min.js && cp lib/mapbox-gl-geocoder.css dist/",
"test": "npm run lint && browserify -t envify test/index.js | smokestack -b firefox | tap-status",
"docs": "documentation build lib/index.js --format=md > API.md",
"lint": "eslint lib"
},
"files": [
"lib",
"dist"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/mapbox/mapbox-gl-geocoder.git"
},
"keywords": [
"geocoder",
"osm",
"gl"
],
"author": "Mapbox",
"license": "ISC",
"bugs": {
"url": "https://github.com/mapbox/mapbox-gl-geocoder/issues"
},
"homepage": "https://github.com/mapbox/mapbox-gl-geocoder#readme",
"devDependencies": {
"brfs": "1.4.3",
"browserify": "^13.0.1",
"budo": "^9.2.1",
"documentation": "^4.0.0-beta13",
"envify": "^3.4.1",
"eslint": "^3.10.0",
"insert-css": "2.0.0",
"lodash.once": "^4.0.0",
"mapbox-gl": "0.27.0",
"smokestack": "^3.3.1",
"tap-status": "^1.0.1",
"tape": "^4.6.0",
"uglify-js": "^2.6.4"
},
"dependencies": {
"lodash.debounce": "^4.0.6",
"mapbox": "1.0.0-beta9",
"suggestions": "^1.3.2",
"xtend": "^4.0.1"
}
}