-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.58 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.58 KB
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
{
"name": "spatialdatahub.org-static",
"jest": {
"verbose": true,
"testURL": "http://localhost/"
},
"version": "1.0.0",
"description": "static files for spatialdatahub.org",
"main": "index.js",
"scripts": {
"build": "browserify src/bundle.js -t babelify -o build/js/bundle.js -t",
"build-and-move-files": "npm run build && cp build/js/bundle.js ../static/js/bundle.js",
"dev": "watchify src/bundle.js -t babelify -o build/js/bundle.js -t",
"dev-filter": "watchify src/embed-filter.js -t babelify -o build/js/embed-filter.js -t",
"test": "jest",
"test-watch": "jest --verbose --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/spatialdatahub/spatialdatahub.org-static.git"
},
"keywords": [
"leaflet"
],
"author": "Pat Curry",
"license": "MIT",
"bugs": {
"url": "https://github.com/spatialdatahub/spatialdatahub.org-static/issues"
},
"homepage": "https://github.com/spatialdatahub/spatialdatahub.org-static#readme",
"devDependencies": {
"atob": ">=2.1.0",
"babel-core": "^6.26.3",
"babel-jest": "^23.0.0-alpha.0",
"babel-preset-env": "^1.7.0",
"babelify": "^8.0.0",
"browserify": "^16.2.3",
"jest": "^22.4.2",
"randomatic": ">=3.0.0",
"regenerator-runtime": "^0.11.1",
"static-eval": "^2.0.1",
"watchify": "^3.11.1"
},
"dependencies": {
"@mapbox/leaflet-omnivore": "^0.3.4",
"@turf/helpers": "^6.0.1",
"@turf/within": "^4.7.3",
"easy-nominatim": "^1.0.4",
"file-saver": "^1.3.4",
"leaflet": "^1.3.1",
"leaflet.markercluster": "^1.3.0"
}
}