-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
98 lines (98 loc) · 3.68 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
{
"name": "geoportal-access-lib",
"version": "3.4.6",
"date": "19/12/2024",
"description": "French Geoportal resources access library",
"module": "src/Gp.js",
"main": "dist/GpServices-src.js",
"homepage": "https://github.com/IGNF/geoportal-access-lib#readme",
"scripts": {
"clean": "echo \"Warning: no yet implemented!\" && exit 0",
"setup": "npm install",
"cover": "nyc --reporter=lcov --reporter=text npm run test",
"eslint": "eslint src/",
"build": "webpack --mode=none",
"build:prod": "webpack --mode=production",
"build:dev": "webpack --mode=development",
"test": "npx instant-mocha --mode=development --reporter mochawesome --reporter-options reportDir=test-report,reportFilename=index --webpack-config ./test/webpack/webpack.test.js --glob \"test_*.js\" test/spec/",
"test:serve": "webpack-dev-server --hot --config ./test/webpack/webpack.test.serve.js",
"test:serve:docker": "webpack-dev-server --hot --config ./test/webpack/webpack.test.serve.docker.js",
"test:end-to-end:serve": "webpack-dev-server --hot --config ./test/webpack/webpack.end-to-end.serve.js",
"test:end-to-end:serve:docker": "webpack-dev-server --hot --config ./test/webpack/webpack.end-to-end.serve.docker.js",
"sample": "npm run sample:serve",
"sample:serve": "webpack-dev-server --mode=none --open-page samples/index-src.html --https --content-base . --output-public-path '/dist/' --port 9001 --open",
"sample:serve:prod": "webpack-dev-server --mode=production --open-page samples/index-prod.html --content-base . --output-public-path '/dist/' --port 9001 --open",
"sample:serve:dev": "webpack-dev-server --mode=development --open-page samples/index-map.html --content-base . --output-public-path '/dist/' --port 9001 --open",
"doc": "npm run doc:serve",
"doc:serve": "webpack-dev-server --content-base jsdoc --port 9001 --open"
},
"engines": {
"node": ">=20"
},
"nyc": {
"include": [
"src/**/*.js"
],
"instrument": false,
"sourceMap": false
},
"repository": {
"type": "git",
"url": "https://github.com/IGNF/geoportal-access-lib.git"
},
"keywords": [
"geoplateforme",
"geoportail",
"webservice",
"javascript",
"es6"
],
"author": "IGNF",
"license": "CECILL-B",
"dependencies": {
"@xmldom/xmldom": "^0.9.6",
"es6-promise": "^4.2.4",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-transform-template-literals": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"babel-loader": "^8.2.2",
"chai": "^4.1.2",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^5.1.2",
"eslint": "^7.18.0",
"eslint-config-standard": "^16.0.2",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^5.0.0",
"glob": "^7.1.2",
"handlebars-layouts": "^3.1.4",
"handlebars-webpack-plugin": "^1.4.1",
"html-webpack-plugin": "^4.5.2",
"instant-mocha": "^1.5.3",
"istanbul-instrumenter-loader": "^3.0.1",
"jsdoc-webpack-plugin": "^0.3.0",
"loglevel": "^1.6.1",
"mocha": "^8.4.0",
"mocha-loader": "^5.1.5",
"mochawesome": "^6.2.1",
"nyc": "^15.1.0",
"path": "^0.12.7",
"replace-bundle-webpack-plugin": "^1.0.0",
"sinon": "^9.2.4",
"sinon-es6": "0.0.3",
"speed-measure-webpack-plugin": "^1.4.2",
"string-template": "^1.0.0",
"terser-webpack-plugin": "^4.2.3",
"webpack": "^4.47.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.2",
"webpack-node-externals": "^2.5.2",
"webpack-shell-plugin": "^0.5.0"
},
"bundleDependencies": []
}