-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
110 lines (110 loc) · 4.77 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
{
"name": "geoportal-sdk",
"version": "3.5.4",
"date": "05/06/2024",
"SDK2DVersion": "3.5.4",
"SDK3DVersion": "3.5.4",
"description": "French Geoportal SDK based on OpenLayers (2D) and iTowns (3D) libraries",
"main": "dist/2d/GpSDK2D-src.js, dist/3d/GpSDK3d-src.js",
"module": "src/SDK2D.js, src/SDK3D.js",
"scripts": {
"setup": "npm install",
"clean": "echo \"Warning: target not yet implemented!\" && exit 0",
"check": "eslint src/",
"test:serve": "webpack-dev-server --config webpack.test.serve.js",
"doc:serve": "webpack-dev-server --config webpack.config.3d --content-base jsdoc/ --port 9001 --open",
"sample:3d:serve": "webpack-dev-server --config webpack.config.3d --mode=development --https --open-page samples/index-3d-map.html --content-base . --output-public-path '/dist/3d/' --port 9001 --open",
"sample:2d:serve": "webpack-dev-server --config webpack.config.2d --mode=development --https --open-page samples/index-2d-map.html --content-base . --output-public-path '/dist/2d/' --port 9001 --open",
"stat:2d": "npm run build:2d:src -- --profile --json > map-2d.json",
"stat:3d": "npm run build:3d:src -- --profile --json > map-3d.json",
"clean:chunk": "rm dist/*/chunk*",
"build": "npm-run-all --print-label --print-name build:*:*",
"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:3d": "npm-run-all --print-label --print-name build:3d:*",
"build:3d:src": "webpack --config webpack.config.3d --mode=none && npm run clean:chunk",
"build:3d:dev": "webpack --config webpack.config.3d --mode=development && npm run clean:chunk",
"build:3d:prod": "webpack --config webpack.config.3d --mode=production && npm run clean:chunk",
"build:2d": "npm-run-all --print-label --print-name build:2d:*",
"build:2d:src": "webpack --config webpack.config.2d --mode=none && npm run clean:chunk",
"build:2d:dev": "webpack --config webpack.config.2d --mode=development && npm run clean:chunk",
"build:2d:prod": "webpack --config webpack.config.2d --mode=production && npm run clean:chunk"
},
"repository": {
"type": "git",
"url": "https://github.com/IGNF/geoportal-sdk.git"
},
"keywords": [
"openlayers",
"itowns",
"geoportail",
"geoplateforme",
"webservice",
"javascript"
],
"author": "IGNF",
"license": "CECILL-B",
"bugs": {
"url": "https://github.com/IGNF/geoportal-sdk/issues"
},
"homepage": "https://geoservices.ign.fr/documentation/utilisation_web/sdk.html",
"dependencies": {
"whatwg-fetch": "3.0.0"
},
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@mapbox/mapbox-gl-style-spec": "13.20.1",
"babel-loader": "^8.0.5",
"chai": "^4.2.0",
"chalk": "^4.0.0",
"copy-webpack-plugin": "^5.1.1",
"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",
"geoportal-extensions-itowns": "2.5.1",
"geoportal-extensions-openlayers": "3.4.4",
"handlebars": "^4.7.5",
"handlebars-layouts": "^3.1.4",
"html-webpack-plugin": "^4.0.4",
"itowns": "2.38.2",
"jsdoc-webpack-plugin": "^0.3.0",
"loglevel": "1.6.6",
"mini-css-extract-plugin": "^0.9.0",
"mocha": "^7.1.1",
"mocha-loader": "^5.0.0",
"npm-run-all": "^4.1.5",
"ol": "6.9.0",
"ol-mapbox-style": "6.7.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"path": "^0.12.7",
"proj4": "2.7.5",
"replace-bundle-webpack-plugin": "^1.0.0",
"requirejs": "^2.3.6",
"responsive-loader": "^1.2.0",
"shelljs": "^0.8.3",
"speed-measure-webpack-plugin": "^1.3.0",
"string-template": "^1.0.0",
"style-loader": "^1.1.3",
"terser-webpack-plugin": "^2.0.0",
"three": "0.137.5",
"three.meshline": "1.2.0",
"url-loader": "^4.0.0",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.1",
"webpack-merge": "^4.2.1",
"webpack-node-externals": "^1.7.2"
}
}