This repository has been archived by the owner on Jan 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.06 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
{
"name": "ol-geotiff",
"version": "0.0.0",
"description": "Display GeoTIFFs in OpenLayers",
"main": "index.js",
"scripts": {
"lint": "eslint tasks test rendering src/ol config",
"pretest": "npm run lint && npm run typecheck",
"test-rendering": "node rendering/test.js",
"test": "npm run karma -- --single-run --log-level error && npm run test-rendering -- --force",
"karma": "karma start test/karma.config.js",
"build-package": "npm run transpile && node tasks/prepare-package && shx cp README.md build/ol",
"transpile": "shx rm -rf build/ol && shx mkdir -p build/ol && shx cp -rf src/ol build/ol/src && node tasks/serialize-workers && tsc --project config/tsconfig-build.json",
"typecheck": "tsc --pretty"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GeoTIFF/ol-geotiff.git"
},
"author": "Daniel J. Dufour & Victoria Mak",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/GeoTIFF/ol-geotiff/issues"
},
"homepage": "https://github.com/GeoTIFF/ol-geotiff#readme",
"keywords": [
"openlayers",
"cog",
"geotiff",
"gis",
"raster"
],
"private": true,
"devDependencies": {
"@openlayers/eslint-plugin": "^4.0.0",
"eslint": "^6.0.0",
"eslint-config-openlayers": "^13.0.0",
"karma": "^4.4.1",
"karma-chrome-launcher": "3.1.0",
"karma-coverage": "^2.0.1",
"karma-coverage-istanbul-reporter": "^2.1.0",
"karma-firefox-launcher": "^1.1.0",
"karma-mocha": "1.3.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^4.0.0-rc.2",
"mocha": "6.2.2",
"pixelmatch": "^5.1.0",
"puppeteer": "~1.20.0",
"shx": "^0.3.2",
"typescript": "3.5.3"
},
"eslintConfig": {
"extends": "openlayers",
"plugins": [
"@openlayers"
],
"rules": {
"valid-jsdoc": "off",
"@openlayers/valid-tsdoc": [
"error",
{
"requireReturn": false
}
],
"@openlayers/no-exclusive-tests": [
"error",
{
"include": "test/**/*.test.js"
}
]
}
}
}