forked from iSkore/boilerplate-leaflet-map
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1022 Bytes
/
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
{
"name": "boilerplate-leaflet-map",
"version": "1.0.0",
"description": "Boilerplate Leaflet map for testing WMS/WFS/etc services",
"main": "index.js",
"scripts": {
"build": "NODE_ENV=production parcel build src/index.html --out-dir build --target browser",
"dev": "parcel src/index.html --out-dir build --target browser",
"start": "parcel src/index.html --out-dir build --target browser",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iSkore/boilerplate-leaflet-map.git"
},
"keywords": [
"leaflet",
"map"
],
"author": "Nick Soggin",
"license": "MIT",
"bugs": {
"url": "https://github.com/iSkore/boilerplate-leaflet-map/issues"
},
"homepage": "https://github.com/iSkore/boilerplate-leaflet-map#readme",
"devDependencies": {
"@babel/core": "7.4.3",
"eslint": "5.16.0",
"parcel-bundler": "1.12.3",
"sass": "1.18.0"
},
"dependencies": {
"@babel/polyfill": "7.4.3",
"@babel/preset-env": "7.4.3",
"jquery": "3.4.0",
"leaflet": "1.4.0"
}
}