forked from etalab/apicarto
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.93 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.93 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
{
"name": "apicarto",
"version": "v2.10.2",
"main": "index.js",
"type": "module",
"scripts": {
"test": "npm run lint && npm run test-unit",
"test-unit": "c8 --reporter=html --reporter=text --reporter=cobertura mocha",
"lint": "eslint -c .eslint.config.js controllers/**/*.js middlewares/*.js helper/**/*.js *.js test/**/*.js lib/**/*.js",
"start": "node server | bunyan",
"test:coverage": "NODE_ENV=test c8 mocha",
"coverage": "NODE_ENV=test c8 --reporter=html --reporter=text mocha",
"coverage:report": "c8 report --reporter=html"
},
"contributors": [
"Jérôme Desboeufs <jerome.desboeufs@data.gouv.fr>",
"Nabil Servais <nabil.servais@modernisation.gouv.fr>",
"Vincent Sagniez <vincent.sagniez@ign.fr>",
"Mickael Borne <mickael.borne@ign.fr>",
"Manuel Frangi <manuel.frangi@ign.fr>"
],
"repository": "IGNF/apicarto",
"license": "CECILL-B",
"engines": {
"node": ">=20"
},
"//": "La dépendance 'nomnom' provoque une vulnérabilité critique si la version est supérieure à 1.5.0",
"dependencies": {
"@mapbox/geojsonhint": "^3.3.0",
"@terraformer/wkt": "^2.2.1",
"@turf/turf": "^7.3.4",
"axios": "^1.15.0",
"bunyan": "^1.8.15",
"codes-postaux": "^4.1.2",
"cors": "^2.8.6",
"debug": "^4.4.3",
"ejs": "^5.0.1",
"express": "^5.2.1",
"express-validator": "^7.3.1",
"geoportal-wfs-client": "github:IGNF/geoportal-wfs-client#v1.0.4",
"handlebars": "^4.7.9",
"http-proxy-agent": "^8.0.0",
"https-proxy-agent": "^8.0.0",
"jsts": "^2.12.1",
"lodash": "^4.18.1",
"node-cache": "^5.1.2",
"pg": "^8.20.0",
"pg-format": "^1.0.4",
"shelljs": "^0.10.0",
"swagger-ui-dist": "^5.32.1",
"uuid": "^14.0.0"
},
"devDependencies": {
"c8": "^11.0.0",
"eslint": "^10.0.3",
"expect.js": "^0.3.1",
"globals": "^17.4.0",
"mocha": "^11.1.0",
"mocha-lcov-reporter": "^1.3.0",
"supertest": "^7.2.2"
}
}