-
Notifications
You must be signed in to change notification settings - Fork 180
/
package.json
78 lines (78 loc) · 2.16 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@mapbox/mapbox-gl-geocoder",
"version": "5.0.3",
"description": "A geocoder control for Mapbox GL JS",
"main": "lib/index.js",
"unpkg": "dist/mapbox-gl-geocoder.min.js",
"style": "lib/mapbox-gl-geocoder.css",
"scripts": {
"start": "budo debug/index.js --dir debug --live -- -t brfs ",
"prepublish": "NODE_ENV=production && mkdir -p dist && browserify lib/index.js --transform [ babelify --global ] --standalone MapboxGeocoder | uglifyjs -c -m > dist/mapbox-gl-geocoder.min.js && cp lib/mapbox-gl-geocoder.css dist/",
"test": "browserify -t envify test/index.js test/events.test.js test/utils.test.js | smokestack -b firefox | tap-status | tap-color",
"docs": "documentation build lib/index.js --format=md > API.md",
"pretest": "npm run lint",
"lint": "eslint lib test",
"precommit": "lint-staged"
},
"files": [
"lib",
"dist"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/mapbox/mapbox-gl-geocoder.git"
},
"engines": {
"node": ">=6"
},
"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": {
"@babel/core": "^7.16.12",
"@babel/preset-env": "^7.16.11",
"babelify": "^10.0.0",
"brfs": "^2.0.2",
"browserify": "^16.2.3",
"budo": "^11.6.1",
"documentation": "^14.0.0",
"envify": "^3.4.1",
"eslint": "^4.18.2",
"husky": "^1.3.1",
"insert-css": "2.0.0",
"json-schema": "^0.4.0",
"lint-staged": "^13.0.3",
"lodash.once": "^4.0.0",
"mapbox-gl": "^3.0.1",
"minimist": "^1.2.6",
"sinon": "^7.2.7",
"smokestack": "^3.6.0",
"tap-color": "^1.1.0",
"tap-status": "^1.0.1",
"tape": "^4.10.1",
"uglify-js": "^2.8.29"
},
"dependencies": {
"@mapbox/mapbox-sdk": "^0.16.1",
"events": "^3.3.0",
"lodash.debounce": "^4.0.6",
"nanoid": "^3.1.31",
"subtag": "^0.5.0",
"suggestions": "^1.6.0",
"xtend": "^4.0.1"
},
"lint-staged": {
"*.js": [
"eslint",
"git add"
]
}
}