forked from openlayers/openlayers
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
156 lines (156 loc) · 5.61 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
{
"name": "ol",
"version": "10.3.2-dev",
"description": "OpenLayers mapping library",
"keywords": [
"map",
"mapping",
"openlayers"
],
"private": true,
"homepage": "https://openlayers.org/",
"scripts": {
"lint": "eslint config examples site src/ol tasks test",
"pretest": "npm run lint && npm run typecheck && npm run typecheck-strict && npm run build-package",
"test-rendering": "npm run build-full && node test/rendering/test.js",
"test-browser": "npm run karma -- --single-run --log-level error",
"test-node": "mocha --recursive test/node",
"test": "npm run test-browser && npm run test-node && npm run test-rendering -- --force",
"karma": "karma start test/browser/karma.config.cjs",
"start": "npm run serve-examples",
"serve-examples": "webpack serve --config examples/webpack/config.mjs --mode development",
"build-examples": "shx rm -rf build/examples && webpack --config examples/webpack/config.mjs --mode production",
"build-package": "npm run build-full && npm run copy-css && npm run generate-types && node tasks/prepare-package.js && npm run typecheck-libcheck",
"build-index": "shx rm -f build/index.js && npm run transpile && node tasks/generate-index.js",
"build-full": "shx rm -rf build/full && npm run build-index && npx rollup --config config/rollup-full-build.js",
"copy-css": "shx cp src/ol/ol.css build/ol/ol.css",
"generate-types": "tsc --project config/tsconfig-build.json --declaration --declarationMap --emitDeclarationOnly --outdir build/ol",
"transpile": "shx rm -rf build/ol && shx mkdir -p build/ol && shx cp -rf src/ol build && node tasks/serialize-workers.cjs && node tasks/set-version.js",
"typecheck": "tsc --pretty",
"typecheck-strict": "tsc --project config/tsconfig-strict.json",
"typecheck-libcheck": "tsc --project config/tsconfig-lib-check.json",
"apidoc-debug": "shx rm -rf build/apidoc && node --inspect-brk=9229 ./node_modules/jsdoc/jsdoc.js --readme config/jsdoc/api/index.md --configure config/jsdoc/api/conf.json --package package.json --destination build/apidoc",
"apidoc": "shx rm -rf build/apidoc && jsdoc --readme config/jsdoc/api/index.md --configure config/jsdoc/api/conf.json --package package.json --destination build/apidoc"
},
"type": "module",
"repository": {
"type": "git",
"url": "git://github.com/openlayers/openlayers.git"
},
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/openlayers/openlayers/issues"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/openlayers"
},
"dependencies": {
"@types/rbush": "4.0.0",
"color-rgba": "^3.0.0",
"color-space": "^2.0.1",
"earcut": "^3.0.0",
"geotiff": "^2.1.3",
"pbf": "4.0.1",
"rbush": "^4.0.0"
},
"devDependencies": {
"@codemirror/lang-javascript": "^6.2.2",
"@metalsmith/in-place": "^5.0.0",
"@metalsmith/layouts": "^2.5.1",
"@metalsmith/markdown": "^1.6.0",
"@octokit/rest": "^21.0.0",
"@openlayers/eslint-plugin": "^4.0.0",
"@rollup/plugin-alias": "^5.1.0",
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^0.4.3",
"@turf/along": "^7.1.0",
"@turf/length": "^7.1.0",
"@types/arcgis-rest-api": "^10.4.4",
"@types/expect.js": "^0.3.32",
"@types/geojson": "^7946.0.7",
"@types/mocha": "^10.0.7",
"@types/offscreencanvas": "^2019.6.4",
"@types/pbf": "^3.0.2",
"@types/proj4": "^2.5.2",
"@types/topojson-specification": "^1.0.1",
"@typescript-eslint/parser": "^8.17.0",
"chaikin-smooth": "^1.0.4",
"chroma-js": "^3.1.1",
"clean-css-cli": "5.6.3",
"codemirror": "^6.0.1",
"colormap": "^2.3.2",
"copy-webpack-plugin": "^12.0.1",
"d3-array": "^3.2.4",
"d3-fetch": "^3.0.1",
"d3-geo": "^3.1.1",
"d3-scale": "^4.0.2",
"d3-selection": "^3.0.0",
"d3-transition": "^3.0.1",
"es-main": "^1.0.2",
"eslint": "^9.16.0",
"eslint-config-openlayers": "^20.0.0",
"expect.js": "0.3.1",
"express": "^4.17.1",
"fflate": "^0.8.2",
"front-matter": "^4.0.0",
"fs-extra": "^11.1.0",
"geojson-vt": "^4.0.2",
"globby": "^14.0.0",
"handlebars": "4.7.8",
"html2canvas": "^1.4.1",
"jquery": "3.7.1",
"jsdoc": "4.0.4",
"jsdoc-plugin-intersection": "^1.0.4",
"jsdoc-plugin-typescript": "^3.0.0",
"jspdf": "^2.5.2",
"jstransformer-handlebars": "^1.2.0",
"jsts": "^2.11.3",
"karma": "^6.3.8",
"karma-chrome-launcher": "^3.2.0",
"karma-firefox-launcher": "^2.1.2",
"karma-mocha": "2.0.1",
"karma-source-map-support": "^1.4.0",
"karma-webpack": "^5.0.0",
"loglevelnext": "^6.0.0",
"marked": "15.0.4",
"metalsmith": "^2.5.0",
"mocha": "11.0.1",
"monotone-chain-convex-hull": "^1.1.0",
"ol-mapbox-style": "^12.4.0",
"ol-stac": "^1.0.0-beta.8",
"pixelmatch": "^6.0.0",
"pmtiles": "^4.0.1",
"pngjs": "^7.0.0",
"proj4": "2.15.0",
"puppeteer": "23.11.1",
"rollup": "^4.1.4",
"rollup-plugin-external-globals": "^0.13.0",
"semver": "^7.3.7",
"serve-static": "^1.14.0",
"shx": "^0.3.2",
"sinon": "^19.0.2",
"source-map-loader": "^5.0.0",
"threads": "^1.6.5",
"topojson-client": "^3.1.0",
"typescript": "5.7.2",
"walk": "^2.3.9",
"webpack": "^5.27.2",
"webpack-cli": "^6.0.1",
"webpack-dev-middleware": "^7.0.0",
"webpack-dev-server": "^5.0.2",
"webpack-sources": "^3.2.0",
"worker-loader": "^3.0.8",
"yargs": "^17.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
],
"sideEffects": [
"proj.js",
"ol.css"
]
}