forked from GeoTIFF/georaster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.45 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
{
"name": "georaster",
"version": "0.4.2",
"description": "Wrapper around Georeferenced Rasters like GeoTIFF, NetCDF, JPG, and PNG that provides a standard interface",
"main": "dist/georaster.bundle.min.js",
"scripts": {
"eslint": "node ./node_modules/eslint/bin/eslint.js src",
"fix": "node ./node_modules/eslint/bin/eslint.js src --fix",
"test": "node ./node_modules/.bin/mocha --reporter spec",
"dev": "webpack --mode development",
"build": "webpack --mode production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joannalcy/georaster.git"
},
"keywords": [
"geotiff",
"gis",
"maps",
"raster",
"rasters",
"pixels",
"tiff"
],
"author": "Daniel Dufour and Steve Peyton",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/GeoTIFF/georaster/issues"
},
"homepage": "https://github.com/GeoTIFF/georaster#readme",
"dependencies": {
"geotiff": "^1.0.0-beta.6",
"path": "^0.12.7",
"simple-xml-dom": "^1.0.0",
"underscore": "^1.8.3",
"worker-loader": "^2.0.0",
"xmldom": "^0.1.27",
"xpath": "0.0.27"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"chai": "^4.1.0",
"eslint": "^5.7.0",
"eslint-config-google": "^0.11.0",
"mocha": "^5.2.0",
"webpack": "^4.12.0",
"webpack-cli": "^3.0.8"
}
}