forked from GeoTIFF/geoblaze
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.58 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.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
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
{
"name": "geoblaze",
"version": "0.1.11",
"description": "process geotiffs",
"main": "dist/geoblaze.min.js",
"scripts": {
"analyze": "webpack --config webpack.analyze.js",
"build": "webpack --config webpack.prod.js",
"build-dev": "webpack --config webpack.dev.js",
"documentation": "./node_modules/.bin/documentation build src/** --config documentation.yml -f html -o docs && echo 'geoblaze.io' > docs/CNAME",
"lint": "eslint src",
"server": "node ./serve.js",
"test": "BABEL_ENV=test ./node_modules/.bin/mocha src --recursive --compilers js:babel-core/register",
"test-loading-builds": "./node_modules/.bin/mocha test-loading-builds.js",
"setup": "bash setup.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GeoTIFF/geotiff-io.git"
},
"keywords": [
"geoblaze",
"georaster",
"geotiff",
"geotiff.io",
"gis",
"maps",
"raster",
"rasters",
"geoprocessing",
"pixels",
"tiff"
],
"author": "Daniel Dufour and Steve Peyton",
"license": "MIT",
"bugs": {
"url": "https://github.com/GeoTIFF/geoblaze/issues"
},
"homepage": "https://github.com/GeoTIFF/geoblaze#readme",
"dependencies": {
"@turf/bbox": "^6.0.1",
"@turf/bbox-polygon": "^6.0.1",
"@turf/combine": "^4.7.3",
"@turf/helpers": "^6.1.4",
"@turf/union": "^4.7.3",
"georaster": "0.4.0",
"geotiff": "^0.4.1",
"leaflet": "^1.3.1",
"mathjs": "^4.1.1",
"node-fetch": "^2.3.0",
"path": "^0.12.7",
"proj4": "^2.4.3",
"terraformer": "^1.0.8",
"terraformer-arcgis-parser": "^1.0.5",
"underscore": "^1.8.3"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"chai": "^4.1.2",
"copy-webpack-plugin": "^4.5.2",
"documentation": "^9.1.1",
"eslint": "^4.12.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-standard": "^10.2.1",
"eslint-loader": "^2.1.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "^7.7.0",
"eslint-plugin-standard": "^3.0.1",
"express": "^4.16.4",
"http-server": "^0.10.0",
"jsdoc": "^3.5.5",
"memory-fs": "^0.4.1",
"mocha": "^5.2.0",
"puppeteer": "^1.11.0",
"shapefile": "^0.6.6",
"webpack": "^4.13.0",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.11",
"webpack-merge": "^4.1.3"
}
}