forked from smithmicro/mapbox-gl-circle
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
98 lines (98 loc) · 2.86 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "mapbox-gl-circle",
"version": "1.6.5",
"author": "Smith Micro Software, Inc.",
"license": "ISC",
"description": "A google.maps.Circle replacement for Mapbox GL JS API",
"homepage": "https://github.com/smithmicro/mapbox-gl-circle#readme",
"bugs": {
"url": "https://github.com/smithmicro/mapbox-gl-circle/issues"
},
"main": "lib/main.js",
"scripts": {
"start": "budo example/index.js --live --force-default-index --title budo/mapbox-gl-circle --verbose -- -t brfs",
"watchify": "mkdir -p dist && watchify lib/main.js -o dist/mapbox-gl-circle-${BUILD_VERSION:-dev}.js --debug -v",
"browserify": "mkdir -p dist && browserify lib/main.js -o dist/mapbox-gl-circle-${BUILD_VERSION:-dev}.js --debug --delay=0 -v",
"prepare": "mkdir -p dist && browserify --standalone MapboxCircle -t [ babelify --presets [ es2015 ] ] lib/main.js | uglifyjs -c -m > dist/mapbox-gl-circle-${BUILD_VERSION:-dev}.min.js && cp -f dist/mapbox-gl-circle-${BUILD_VERSION:-dev}.min.js dist/mapbox-gl-circle.min.js",
"docs": "documentation lint lib/main.js && documentation readme lib/main.js --access public --section=Usage",
"lint": "eslint lib"
},
"browserify": {
"transform": [
"babelify"
]
},
"files": [
"lib/",
"example/",
"dist/"
],
"directories": {
"example": "example",
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:smithmicro/mapbox-gl-circle.git"
},
"keywords": [
"mapbox",
"circle",
"osm",
"gl"
],
"engines": {
"node": ">=7.6.0",
"npm": ">=5.3.0"
},
"optionalDependencies": {
"core-util-is": "^1.0.2",
"debug": "^3.0.0",
"fsevents": "^1.1.2",
"glob": "^7.1.2",
"inflight": "^1.0.6",
"inherits": "^2.0.3",
"jsonparse": "^1.3.1",
"minimatch": "^3.0.4",
"once": "^1.4.0",
"punycode": "^2.1.0",
"readable-stream": "^2.3.3",
"string_decoder": "^1.0.3",
"through2": "^2.0.3",
"util-deprecate": "^1.0.2",
"wrappy": "^1.0.2",
"xtend": "^4.0.1",
"yarn": "^0.27.5"
},
"devDependencies": {
"async-each": "^1.0.1",
"babel-preset-es2015": "^6.24.1",
"babelify": "^7.3.0",
"brfs": "^1.4.4",
"browserify": "^14.5.0",
"buble": "^0.15.2",
"budo": "^10.0.4",
"documentation": "^5.1.0",
"eslint": "^4.18.1",
"eslint-config-google": "^0.9.1",
"esutils": "^2.0.2",
"magic-string": "^0.22.4",
"uglify-js": "^3.3.12",
"vlq": "^0.2.3",
"watchify": "^3.10.0"
},
"dependencies": {
"@turf/bbox": "^4.7.3",
"@turf/bbox-polygon": "^4.7.3",
"@turf/bearing": "^4.5.2",
"@turf/circle": "^4.7.3",
"@turf/destination": "^4.7.3",
"@turf/distance": "^4.7.3",
"@turf/helpers": "^4.7.3",
"@turf/truncate": "^4.7.3",
"events": "^1.1.1",
"lodash": "^4.17.5",
"lodash.debounce": "^4.0.8",
"mapbox-gl": "^0.44.1"
}
}