forked from etalab/apicarto
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
61 lines (61 loc) · 1.76 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
{
"name": "apicarto",
"version": "v2.7.8",
"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",
"coveralls": "c8 report --reporter=text-lcov | coveralls"
},
"contributors": [
"Jérôme Desboeufs <[email protected]>",
"Nabil Servais <[email protected]>",
"Vincent Sagniez <[email protected]>",
"Mickael Borne <[email protected]>"
],
"repository": "IGNF/apicarto",
"license": "CECILL-B",
"engines": {
"node": ">=20"
},
"dependencies": {
"@mapbox/geojsonhint": "^3.1.0",
"@terraformer/wkt": "^2.2.1",
"@turf/meta": "6.5.0",
"@turf/turf": "^6.5.0",
"axios": "^1.7.2",
"body-parser": "^1.20.0",
"bunyan": "^1.8.15",
"codes-postaux": "^4.1.1",
"cors": "^2.8.5",
"debug": "^4.3.4",
"ejs": "^3.1.10",
"express": "^4.19.2",
"express-validator": "^7.1.0",
"geoportal-wfs-client": "https://github.com/IGNF/geoportal-wfs-client#v1.0.3",
"handlebars": "^4.7.7",
"http-proxy-agent": "^7.0.2",
"https-proxy-agent": "^7.0.4",
"lodash": "^4.17.21",
"node-cache": "^5.1.2",
"pg": "^8.11.5",
"pg-format": "^1.0.4",
"shelljs": "^0.8.5",
"swagger-ui-dist": "^5.17.12",
"uuid": "^9.0.1"
},
"devDependencies": {
"c8": "^9.1.0",
"coveralls": "^3.1.1",
"eslint": "^9.3.0",
"expect.js": "^0.3.1",
"globals": "^15.3.0",
"mocha": "^10.4.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.1.0",
"supertest": "^7.0.0"
}
}