forked from GeoTIFF/georaster-layer-for-leaflet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.99 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
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
90
91
{
"name": "georaster-layer-for-leaflet",
"version": "3.3.0",
"description": "Display GeoTIFFs and soon other types of raster on your Leaflet Map",
"source": "src/georaster-layer-for-leaflet.ts",
"main": "dist/georaster-layer-for-leaflet.min.js",
"unpkg": "dist/georaster-layer-for-leaflet.min.js",
"types": "dist/georaster-layer-for-leaflet.d.ts",
"scripts": {
"clean": "rimraf dist",
"build:babel": "babel src/georaster-layer-for-leaflet.ts -o dist/georaster-layer-for-leaflet.bundle.js",
"build:main": "tsc",
"build:types": "tsc --emitDeclarationOnly",
"build:webpack:lite": "LITE=true webpack",
"build:webpack": "webpack",
"build": "npm run clean && npm run build:babel && npm run build:webpack && npm run build:webpack:lite && npm run build:main",
"dev": "concurrently \"npm run serve\" \"webpack --watch\" ",
"format": "prettier --write ./src/georaster-layer-for-leaflet.ts webpack.config.js",
"check-types": "tsc",
"fix": "eslint ./src/georaster-layer-for-leaflet.ts --fix",
"lint": "eslint ./src/georaster-layer-for-leaflet.ts",
"prep-legacy": "./prep-legacy.sh",
"test": "echo 'to set library, run dev and serve and open the html files in test folder on localhost'",
"validate": "npm run lint && npm run format && npm run check-types",
"serve": "HOST=0.0.0.0 http-server --cors"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GeoTIFF/georaster-layer-for-leaflet.git"
},
"keywords": [
"geotiff",
"georaster",
"gis",
"leaflet",
"maps",
"raster",
"rasters",
"geoprocessing",
"pixels",
"tiff"
],
"author": "Daniel Dufour and Steve Peyton",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/GeoTIFF/georaster-layer-for-leaflet/issues"
},
"homepage": "https://github.com/GeoTIFF/georaster-layer-for-leaflet#readme",
"dependencies": {
"chroma-js": "^1.4.0",
"geo-extent": "^0.2.1",
"proj4-fully-loaded": "^0.0.3",
"regenerator-runtime": "^0.13.5",
"snap-bbox": "^0.2.0",
"utm-utils": "^0.1.0"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.10.5",
"@babel/plugin-transform-template-literals": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"@babel/preset-typescript": "^7.12.13",
"@types/chroma-js": "^2.1.3",
"@types/leaflet": "^1.5.21",
"@types/node": "^14.14.19",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.11.1",
"babel-loader": "^8.1.0",
"concurrently": "^5.3.0",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.0",
"http-server": "^0.12.3",
"null-loader": "^4.0.1",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"typescript": "^4.1.3",
"webpack": "^5.21.2",
"webpack-cli": "^4.5.0"
},
"peerDependencies": {
"georaster": "*",
"leaflet": "^1.7.1"
},
"files": [
"dist/**",
"types/**",
"src/**",
"georaster-layer-for-leaflet*"
]
}