-
Notifications
You must be signed in to change notification settings - Fork 127
/
package.json
80 lines (80 loc) · 2.29 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
79
80
{
"name": "@mapbox/mapbox-gl-directions",
"version": "4.3.1",
"description": "A mapboxgl plugin for the Mapbox Directions API",
"main": "./src/index.js",
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"@babel/preset-env"
]
}
],
"brfs"
]
},
"peerDependencies": {
"mapbox-gl": "^1 || ^2 || ^3"
},
"scripts": {
"prepublish": "npm run build",
"start": "NODE_ENV=development budo example/index.js:example/bundle.js --live",
"build": "NODE_ENV=production mkdir -p dist && browserify -s MapboxDirections src/index.js > dist/mapbox-gl-directions.js && cp src/mapbox-gl-directions.css dist",
"test": "NODE_ENV=test npm run lint && browserify test/index.js | smokestack -b firefox | tap-status",
"docs": "documentation build src/directions.js --shallow --format=md > API.md",
"lint": "eslint --no-eslintrc -c .eslintrc src"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/mapbox/mapbox-gl-directions.git"
},
"keywords": [
"directions",
"routing",
"osm",
"gl"
],
"author": "Mapbox",
"license": "ISC",
"bugs": {
"url": "https://github.com/mapbox/mapbox-gl-directions/issues"
},
"homepage": "https://github.com/mapbox/mapbox-gl-directions#readme",
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-transform-object-assign": "^7.18.6",
"@babel/preset-env": "^7.20.2",
"babel-plugin-transform-inline-environment-variables": "^6.8.0",
"babelify": "^10.0.0",
"brfs": "^2.0.2",
"browserify": "^17.0.0",
"budo": "^11.8.4",
"documentation": "^14.0.0",
"eslint": "^8.29.0",
"insert-css": "^2.0.0",
"json-loader": "^0.5.7",
"lodash.once": "^4.0.0",
"mapbox-gl": "^3.2.0",
"smokestack": "^3.6.0",
"tap-status": "^1.0.1",
"tape": "^4.6.0",
"transform-loader": "^0.2.4",
"webpack": "^5.75.0",
"webworkify-webpack": "^2.1.5"
},
"dependencies": {
"@mapbox/polyline": "^1.1.1",
"lodash.debounce": "^4.0.6",
"lodash.isequal": "^4.2.0",
"lodash.template": "^4.2.5",
"merge-options": "^3.0.4",
"redux": "^4.2.0",
"redux-thunk": "^2.4.2",
"suggestions": "^1.7.1",
"turf-extent": "^1.0.4"
}
}