forked from mapbox/mapbox-gl-geocoder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.3 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
{
"name": "mapbox-gl-geocoder",
"version": "1.3.0",
"description": "A geocoder control for Mapbox GL JS",
"main": "index.js",
"scripts": {
"start": "budo example/index.js:example/bundle.js --live",
"build": "NODE_ENV=production && browserify index.js | uglifyjs -c -m > dist/mapbox-gl-geocoder.js",
"test": "npm run lint && browserify -t envify test/index.js | smokestack -b firefox | tap-status",
"docs": "documentation index.js --format=md > API.md",
"lint": "eslint --no-eslintrc -c .eslintrc index.js src"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/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": {
"browserify": "^13.0.1",
"budo": "^8.3.0",
"documentation": "^3.0.0",
"envify": "^3.4.1",
"eslint": "^2.13.1",
"lodash.once": "^4.0.0",
"mapbox-gl": "^0.20.1",
"smokestack": "^3.3.1",
"tap-status": "^1.0.1",
"tape": "^4.6.0",
"uglify-js": "^2.6.4"
},
"dependencies": {
"lodash.debounce": "^4.0.6",
"suggestions": "^1.3.0",
"xtend": "^4.0.1"
}
}