-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
52 lines (52 loc) · 1.86 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
{
"name": "@geomatico/maplibre-cog-protocol",
"version": "0.3.1",
"description": "Custom protocol to load Cloud Optimized GeoTIFFs (COG) in Maplibre GL JS",
"scripts": {
"watch:src": "rimraf dist && rollup -c rollup.config.mjs --environment DEV --watch",
"watch:examples": "five-server",
"watch": "concurrently --names 'SRC,EXAMPLES' --prefix-colors 'yellow,blue' --kill-others 'npm run watch:src' 'npm run watch:examples'",
"lint": "eslint --max-warnings 0 --fix src/",
"test": "jest --coverage --verbose --runInBand",
"test:ci": "jest --runInBand --coverage --verbose",
"build": "npm run lint && npm run test && rimraf dist && rollup -c rollup.config.mjs",
"gh-publish": "rimraf examples/dist && npm run build && cp -r dist examples && gh-pages -d examples"
},
"files": [
"dist"
],
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Geomatico <[email protected]>",
"devDependencies": {
"@eslint/js": "^9.7.0",
"@mapbox/sphericalmercator": "^1.2.0",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/d3-scale": "^4.0.8",
"@types/jest": "^29.5.12",
"@types/mapbox__sphericalmercator": "^1.2.3",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.16.1",
"concurrently": "^8.2.2",
"d3-scale": "^4.0.2",
"eslint": "^8.57.0",
"eslint-plugin-jest": "^28.6.0",
"five-server": "^0.3.3",
"geotiff": "^2.1.3",
"gh-pages": "^6.1.1",
"globals": "^15.8.0",
"jest": "^29.7.0",
"maplibre-gl": "^4.5.0",
"quick-lru": "^6.1.2",
"rimraf": "^6.0.1",
"rollup": "^4.18.1",
"ts-jest": "^29.2.2",
"tslib": "^2.6.3",
"typescript": "^5.5.3",
"typescript-eslint": "^7.16.1"
}
}