-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 4.13 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 4.13 KB
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
{
"name": "@dora/common",
"version": "1.0.0-beta.16",
"description": "dora is a JavaScript library for displaying, editing and designing shapes on several different maps",
"main": "./bundle/dora-common.js",
"types": "./bundle/dora-common.d.ts",
"author": "author",
"license": "license",
"scripts": {
"build": "webpack --progress --colors --watch",
"build_jenkins": "webpack --progress --colors",
"library": "rimraf ./bundle && webpack --progress --colors --config webpack.library.config.js",
"start": "webpack-dev-server --hot --inline",
"pretest": "webpack --config webpack.test.config.js --progress",
"testCesium2D": "karma start --scene2d",
"testCesium3D": "karma start --scene3d",
"test": "npm-run-all --parallel testCesium2D testCesium3D",
"prepublishOnly": "npm run library",
"lint": "tslint -p .",
"autotest": "webpack --config webpack.test.config.js --watch --hot"
},
"keywords": [
"dora",
"map",
"manager"
],
"repository": {
"type": "git",
"url": "LINK"
},
"bugs": {
"url": "LINK"
},
"homepage": "LINK",
"dependencies": {
"@dora/map-types": "^1.0.1",
"@turf/along": "^6.0.1",
"@turf/area": "^6.0.1",
"@turf/bbox": "^6.0.1",
"@turf/bearing": "^6.0.1",
"@turf/boolean-contains": "^6.0.1",
"@turf/buffer": "^5.1.5",
"@turf/centroid": "^6.0.2",
"@turf/destination": "^6.0.1",
"@turf/helpers": "^6.1.4",
"@turf/inside": "^5.0.0",
"@turf/intersect": "5.1.6",
"@turf/length": "^6.0.2",
"@turf/line-intersect": "^5.0.4",
"@turf/line-slice": "^5.1.5",
"@turf/line-split": "^5.0.4",
"@turf/midpoint": "^5.1.5",
"@turf/random": "^6.0.2",
"@turf/square": "^5.1.5",
"@turf/transform-rotate": "^5.0.4",
"color-string": "^1.5.3",
"jquery": "^3.3.1",
"jstree": "^3.3.5",
"lodash.clonedeep": "^4.5.0",
"lodash.isequal": "^4.5.0",
"lodash.merge": "^4.6.1",
"navigation-mixin": "^0.0.2",
"path": "^0.12.7",
"polylabel": "^1.0.2",
"proj4": "2.0.3",
"underscore": "^1.8.3",
"victor": "^1.1.0",
"wellknown": "^0.5.0"
},
"peerDependencies": {
"cesium": "1.52.0",
"cesium-navigation": "^3.0.0",
"leaflet": "1.0.2",
"leaflet-draw": "0.4.12",
"leaflet.markercluster": "^1.3.0"
},
"devDependencies": {
"@types/cesium": "^1.47.3",
"@types/google-earth": "^0.0.2",
"@types/google-maps": "^3.2.0",
"@types/googlemaps": "^3.26.14",
"@types/jasmine": "^2.8.2",
"@types/jasmine-jquery": "^1.5.32",
"@types/jquery": "^3.3.5",
"@types/jstree": "^3.3.35",
"@types/leaflet": "^1.2.5",
"@types/leaflet-draw": "0.4.10",
"@types/leaflet.markercluster": "^1.0.2",
"@types/polylabel": "^1.0.5",
"@types/underscore": "^1.8.1",
"cesium": "1.52.0",
"cesium-navigation": "3.0.0",
"copy-webpack-plugin": "^4.5.1",
"css-loader": "^0.28.11",
"exports-loader": "^0.6.4",
"file-loader": "^1.1.11",
"jasmine": "^2.8.0",
"jasmine-core": "^2.9.1",
"jasmine-jquery": "^2.1.1",
"karma": "^1.7.1",
"karma-chrome-launcher": "^2.2.0",
"karma-jasmine": "^1.1.1",
"karma-jasmine-html-reporter": "^0.2.2",
"karma-sourcemap-loader": "^0.3.7",
"leaflet": "1.0.2",
"leaflet-draw": "0.4.12",
"leaflet.markercluster": "^1.3.0",
"less": "^3.8.0",
"less-loader": "^4.1.0",
"mini-css-extract-plugin": "^0.4.2",
"npm-run-all": "^4.1.3",
"rimraf": "^2.6.2",
"style-loader": "^0.21.0",
"svg-url-loader": "^2.3.2",
"ts-loader": "^4.5.0",
"tslint": "^5.11.0",
"typedoc": "^0.13.0",
"typescript": "^3.1.3",
"url-loader": "^1.0.1",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.1",
"webpack-dev-server": "^3.1.1"
}
}