forked from mapbox/mapbox-gl-directions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.15 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
{
"name": "@mapbox/mapbox-gl-directions",
"version": "4.1.0",
"description": "A mapboxgl plugin for the Mapbox Directions API",
"main": "./src/index.js",
"browserify": {
"transform": [
"babelify",
"brfs"
]
},
"peerDependencies": {
"mapbox-gl": "^0.41.0 <2.0.0"
},
"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://[email protected]/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": "^6.9.1",
"babel-eslint": "^6.0.5",
"babel-plugin-object-assign": "^1.2.1",
"brfs": "^1.4.1",
"browserify": "^13.0.1",
"budo": "^8.3.0",
"documentation": "^4.0.0-beta16",
"eslint": "^2.13.1",
"insert-css": "^2.0.0",
"json-loader": "0.5.4",
"lodash.once": "^4.0.0",
"mapbox-gl": "^0.41.0",
"smokestack": "^3.6.0",
"tap-status": "^1.0.1",
"tape": "^4.6.0",
"transform-loader": "0.2.3",
"webpack": "1.13.1",
"webworkify-webpack": "1.1.7"
},
"dependencies": {
"@mapbox/polyline": "^1.0.0",
"babel-plugin-transform-inline-environment-variables": "^6.8.0",
"babelify": "^7.3.0",
"deep-assign": "^2.0.0",
"lodash.debounce": "^4.0.6",
"lodash.isequal": "^4.2.0",
"lodash.template": "^4.2.5",
"redux": "^3.5.2",
"redux-thunk": "^2.1.0",
"suggestions": "1.3.3",
"turf-extent": "^1.0.4",
"xtend": "4.0.1"
}
}