forked from GeoTIFF/georaster
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.21 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.21 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
{
"name": "georaster",
"version": "1.0.2",
"description": "Wrapper around Georeferenced Rasters like GeoTIFF, NetCDF, JPG, and PNG that provides a standard interface",
"main": "dist/georaster.bundle.min.js",
"browser": {
"./dist/georaster.bundle.min.js": "./dist/georaster.browser.bundle.min.js"
},
"unpkg": "./dist/georaster.browser.bundle.min.js",
"scripts": {
"analyze": "ANALYZE_GEORASTER_BUNDLE=true npm run build",
"eslint": "node ./node_modules/eslint/bin/eslint.js src",
"fix": "node ./node_modules/eslint/bin/eslint.js src --fix",
"test": "npm run test-dev",
"test-all": "npm run test-dev && npm run test-prod",
"test-dev": "npm run dev && GEORASTER_TEST_BUNDLE_NAME='georaster.bundle.js' node ./node_modules/.bin/mocha --reporter spec",
"test-prod": "npm run build && GEORASTER_TEST_BUNDLE_NAME='georaster.bundle.min.js' node ./node_modules/.bin/mocha --reporter spec",
"dev": "webpack --mode development --target node && webpack --mode development --target web",
"build": "webpack --mode production --target node && webpack --mode production --target web"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GeoTIFF/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": {
"cross-fetch": "^3.0.4",
"georaster-to-canvas": "^0.2.0",
"geotiff": "^1.0.0-beta.8",
"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": "^6.23.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"browserify": "^14.5.0",
"chai": "^4.1.0",
"eslint": "^5.7.0",
"eslint-config-google": "^0.11.0",
"mocha": "^6.2.0",
"webpack": "^4.42.1",
"webpack-bundle-analyzer": "^3.6.1",
"webpack-cli": "^3.3.11"
}
}