-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.57 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 3.57 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
{
"name": "geopf-extensions-openlayers",
"description": "French Geoportal Extensions for OpenLayers libraries",
"version": "1.0.0-beta.10-503",
"date": "22/04/2026",
"module": "src/index.js",
"directories": {},
"engines": {
"node": ">=20"
},
"scripts": {
"setup": "npm install",
"clean": "npx rimraf dist/ jsdoc/ samples/",
"eslint": "eslint src/",
"lintfix": "eslint --fix src/",
"test": "npm run test:serve",
"test:serve": "echo \"Warning: target not yet implemented!\" && exit 0",
"sample:bundle": "webpack serve --config build/webpack/bundle.webpack.config --mode development",
"sample:modules": "webpack serve --config build/webpack/modules.webpack.config --mode development",
"generate-types": "npx tsc -p tsconfig.json --emitDeclarationOnly",
"generate-tsdoc": "typedoc --options typedoc.json --useTsLinkResolution true --jsDocCompatibility true --suppressCommentWarningsInDeclarationFiles --plugin typedoc-plugin-rename-defaults",
"generate-themes": "echo \"Warning: target not yet implemented!\" && exit 0",
"publish": "node build/release/package.js",
"build": "npm run build:bundle && npm run build:modules",
"build:bundle": "npx rimraf dist/bundle && webpack --config build/webpack/bundle.webpack.config --mode=production",
"build:modules": "npx rimraf dist/modules && webpack --config build/webpack/modules.webpack.config --mode=production"
},
"repository": {
"type": "git",
"url": "https://github.com/IGNF/geopf-extensions-openlayers.git"
},
"author": "IGNF",
"keywords": [
"geoportail",
"geoplateforme",
"javascript",
"OpenLayers 10"
],
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/IGNF/geopf-extensions-openlayers/issues"
},
"homepage": "https://github.com/IGNF/geopf-extensions-openlayers#readme",
"dependencies": {
"@gouvfr/dsfr": "^1.13.1",
"@mapbox/mapbox-gl-style-spec": "14.8.0",
"@xmldom/xmldom": "^0.9.0",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"clusterize.js": "^1.0.0",
"doctoc": "^2.4.0",
"dompurify": "^3.2.6",
"eventbusjs": "0.2.0",
"geoportal-access-lib": "3.4.6",
"loglevel": "^1.9.1",
"marked": "^16.2.1",
"ol": "^10.3.1",
"ol-contextmenu": "^5.5.0",
"ol-mapbox-style": "^12.3.5",
"proj4": "2.15.0",
"sortablejs": "1.15.3",
"typescript": "^5.3.3",
"whatwg-fetch": "3.6.20",
"yargs": "^17.7.2"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/plugin-transform-template-literals": "^7.23.3",
"@babel/preset-env": "^7.23.9",
"@types/sanitize-html": "^2.16.0",
"babel-loader": "^9.1.3",
"copy-webpack-plugin": "^12.0.2",
"core-js": "^3.35.1",
"css-loader": "^7.0.0",
"css-minimizer-webpack-plugin": "^7.0.0",
"eslint": "^8.56.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^7.0.0",
"eslint-webpack-plugin": "^4.0.1",
"exports-loader": "^5.0.0",
"expose-loader": "^5.0.0",
"fs-extra": "^11.2.0",
"handlebars": "^4.7.8",
"handlebars-layouts": "^3.1.4",
"html-webpack-plugin": "^5.6.0",
"mini-css-extract-plugin": "^2.9.0",
"mkdirp": "^3.0.1",
"path": "^0.12.7",
"string-template": "^1.0.0",
"terser-webpack-plugin": "^5.3.10",
"typedoc": "^0.27.9",
"typedoc-plugin-rename-defaults": "^0.7.3",
"url-loader": "^4.1.1",
"webpack": "^5.91.0",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4",
"webpack-node-externals": "^3.0.0",
"yargs": "^17.7.2"
}
}