forked from IGNF/geoportal-extensions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
127 lines (127 loc) · 5.78 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
{
"name": "geoportal-extensions",
"description": "French Geoportal Extensions for OpenLayers, Leaflet and iTowns libraries",
"version": "2.2.14",
"date": "02/04/2020",
"leafletExtName": "French Geoportal Extension for Leaflet",
"leafletExtVersion": "2.1.5",
"olExtName": "French Geoportal Extension for OpenLayers",
"olExtVersion": "3.0.10",
"itownsExtName": "French Geoportal Extension for Itowns",
"itownsExtVersion": "2.2.9",
"main": "dist/leaflet/GpPluginLeaflet.js, dist/openlayers/GpPluginOpenLayers.js, dist/itowns/GpPluginItowns.js",
"module": "src/Leaflet/index.js, src/OpenLayers/index.js, src/Itowns/index.js",
"directories": {},
"scripts": {
"setup": "npm install",
"clean": "echo \"Warning: target not yet implemented!\" && exit 0",
"eslint": "eslint src/",
"test": "npm run test:serve",
"test:serve": "cd test && webpack-dev-server --hot --config webpack.test.serve.js",
"sample": "npm run sample:serve",
"sample:serve": "npm run sample:ol:serve",
"sample:itowns:serve": "webpack-dev-server --config build/webpack/webpack.config.itowns --https --open-page samples/index-itowns-map.html --content-base . --output-public-path '/dist/itowns/' --port 9001 --open 'google-chrome'",
"sample:leaflet:serve": "webpack-dev-server --config build/webpack/webpack.config.leaflet --https --open-page samples/index-leaflet-map.html --content-base . --output-public-path '/dist/leaflet/' --port 9001 --open 'google-chrome'",
"sample:ol:serve": "webpack-dev-server --config build/webpack/webpack.config.openlayers --https --open-page samples/index-openlayers-map.html --content-base . --output-public-path '/dist/openlayers/' --port 9001 --open 'google-chrome'",
"doc": "npm run doc:serve",
"doc:serve": "npm run doc:ol:serve",
"doc:itowns:serve": "webpack-dev-server --config build/webpack/webpack.config.itowns --content-base jsdoc/itowns --port 9001 --open",
"doc:leaflet:serve": "webpack-dev-server --config build/webpack/webpack.config.leaflet --content-base jsdoc/leaflet --port 9001 --open",
"doc:ol:serve": "webpack-dev-server --config build/webpack/webpack.config.openlayers --content-base jsdoc/openlayers --port 9001 --open",
"build:dev": "npm-run-all --print-label --print-name build:*:dev",
"build:prod": "npm-run-all --print-label --print-name build:*:prod",
"build:src": "npm-run-all --print-label --print-name build:*:src",
"build": "npm-run-all --print-label --print-name build:*:*",
"build:itowns": "npm-run-all --print-label --print-name build:itowns:*",
"build:itowns:dev": "webpack --config build/webpack/webpack.config.itowns --mode=development",
"build:itowns:prod": "webpack --config build/webpack/webpack.config.itowns --mode=production",
"build:itowns:src": "webpack --config build/webpack/webpack.config.itowns --mode=none",
"build:ol": "npm-run-all --print-label --print-name build:ol:*",
"build:ol:dev": "webpack --config build/webpack/webpack.config.openlayers --mode=development",
"build:ol:prod": "webpack --config build/webpack/webpack.config.openlayers --mode=production",
"build:ol:src": "webpack --config build/webpack/webpack.config.openlayers --mode=none",
"build:leaflet": "npm-run-all --print-label --print-name build:leaflet:*",
"build:leaflet:dev": "webpack --config build/webpack/webpack.config.leaflet --mode=development",
"build:leaflet:prod": "webpack --config build/webpack/webpack.config.leaflet --mode=production",
"build:leaflet:src": "webpack --config build/webpack/webpack.config.leaflet --mode=none"
},
"repository": {
"type": "git",
"url": "https://github.com/IGNF/geoportal-extensions.git"
},
"author": "IGNF",
"keywords": [
"geoportail",
"javascript",
"OpenLayers",
"Leaflet",
"Itowns",
"3D"
],
"license": "CECILL-B",
"bugs": {
"url": "https://github.com/IGNF/geoportal-extensions/issues"
},
"homepage": "https://github.com/IGNF/geoportal-extensions#readme",
"dependencies": {
"@mapbox/mapbox-gl-style-spec": "13.11.0",
"eventbusjs": "0.2.0",
"geoportal-access-lib": "2.1.6",
"itowns": "2.19.0",
"leaflet": "1.5.1",
"leaflet-draw": "1.0.4",
"loglevel": "^1.6.7",
"ol": "5.3.0",
"ol-mapbox-style": "4.2.1",
"proj4": "2.6.0",
"proj4leaflet": "1.0.2",
"sortablejs": "1.8.4",
"three": "0.113.2",
"three.meshline": "1.2.0",
"whatwg-fetch": "3.0.0"
},
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/plugin-transform-template-literals": "^7.7.4",
"@babel/preset-env": "^7.4.4",
"babel-loader": "^8.0.5",
"chai": "^4.2.0",
"chalk": "^4.0.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.0.3",
"core-js": "^3.6.4",
"css-loader": "^3.4.2",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-loader": "^4.0.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"exports-loader": "^0.7.0",
"expose-loader": "^0.7.5",
"fs-extra": "^9.0.0",
"handlebars": "^4.7.5",
"handlebars-layouts": "^3.1.4",
"html-webpack-plugin": "^4.0.4",
"jsdoc-webpack-plugin": "^0.3.0",
"mini-css-extract-plugin": "^0.9.0",
"mocha": "^7.1.1",
"mocha-loader": "^5.0.0",
"npm-run-all": "^4.1.5",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"path": "^0.12.7",
"replace-bundle-webpack-plugin": "^1.0.0",
"requirejs": "^2.3.6",
"responsive-loader": "^1.2.0",
"speed-measure-webpack-plugin": "^1.3.0",
"string-template": "^1.0.0",
"style-loader": "^1.1.3",
"terser-webpack-plugin": "^2.0.0",
"url-loader": "^4.0.0",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.1",
"webpack-dev-server": "^3.3.1",
"webpack-node-externals": "^1.7.2"
}
}