forked from openlayers/ol-cesium
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.96 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
{
"name": "@inveni/ol-cesium",
"version": "0.00.1",
"description": "OpenLayers Cesium integration library",
"scripts": {
"build-examples": "cross-env NODE_ENV=production TARGET=examples webpack --progress --bail",
"build-library": "cross-env NODE_ENV=production TARGET=library webpack --progress --bail",
"build-library-debug": "cross-env NODE_ENV=development TARGET=library webpack --progress --bail",
"build-umd": "cross-env NODE_ENV=production TARGET=umd webpack --progress --bail",
"start": "cross-env DEV_SERVER=1 NODE_ENV=development TARGET=examples webpack serve --port 3000 --progress --bail",
"typecheck": "tsc --pretty",
"doc": "typedoc --name ol-cesium --excludeExternals --out dist/apidoc --entryPoints src/index.library.js --tsconfig ./tsconfig.json"
},
"main": "./dist/olcesium.js",
"module": "./dist/olcesium.umd.js",
"repository": {
"type": "git",
"url": "git://github.com/openlayers/ol-cesium.git"
},
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/openlayers/ol-cesium/issues"
},
"peerDependencies": {
"cesium": ">= 1.62.0",
"ol": ">= 6.0.1 || 7"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.14.2",
"@mapbox/geojsonhint": "^3.0.1",
"@types/webpack": "^5.28.0",
"babel-loader": "8.2.2",
"cesium": ">=1.81.0 <=1.97.0",
"copy-webpack-plugin": "^9.0.0",
"cross-env": "7.0.3",
"eslint": "^7.26.0",
"eslint-config-openlayers": "12.0.0",
"eslint-import-resolver-webpack": "^0.13.1",
"fast-glob": "3.2.5",
"fs-extra": "^10.0.0",
"html-loader": "^2.1.2",
"html-webpack-plugin": "^5.3.1",
"htmlparser2": "^6.1.0",
"jsdoc": "^3.6.7",
"nomnom": "1.8.1",
"ol": "^7.1.0",
"proj4": "^2.7.2",
"temp": "0.9.4",
"typedoc": "^0.20.36",
"typescript": "~4.2.4",
"webpack": "^5.37.1",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "3.11.2",
"webpack-merge": "^5.8.0"
}
}