-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
33 lines (33 loc) · 1.02 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
{
"name": "@geostarters/mapbox-gl-draw-rectangle-assisted-mode",
"version": "3.0.4",
"description": "A custom mode for MapboxGL Draw to draw a assisted rentangle",
"main": "dist/DrawAssistedRectangle.js",
"author": "Geostarters - ICGC",
"license": "MIT",
"repository": "https://github.com/geostarters/mapbox-gl-draw-assisted-rectangle-mode",
"keywords": [
"MapBox GL",
"Mapbox-gl-Draw",
"Custom mode",
"Assisted Rectangle",
"Vector Tiles"
],
"scripts": {
"build": "babel src -d dist",
"build-web": "browserify dist/DrawAssistedRectangle.js --standalone DrawAssistedRectangle --outfile dist/DrawAssistedRectangle.min.js",
"build-all": "run-s build build-web"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.25.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"npm-run-all": "^4.1.2"
},
"dependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.6.0",
"browserify": "^16.5.0"
}
}