forked from IGNF/apicarto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.79 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
{
"name": "apicarto",
"version": "v2.5.1",
"main": "index.js",
"scripts": {
"import": "npm run import-inao-appellation",
"import-inao-appellation": "node datasets/inao-appellation/import.js",
"test": "npm run lint && npm run test-unit",
"test-unit": "NODE_ENV=test nyc --reporter=html --reporter=text --reporter=cobertura mocha",
"lint": "eslint controllers/**/*.js middlewares/*.js helper/**/*.js *.js test/**/*.js lib/**/*.js",
"start": "node server | bunyan",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"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>"
],
"repository": "IGNF/apicarto",
"license": "CECILL-B",
"engines": {
"node": ">=14"
},
"dependencies": {
"@mapbox/geojsonhint": "^3.1.0",
"@terraformer/wkt": "^2.1.2",
"@turf/meta": "6.5.0",
"@turf/turf": "^6.5.0",
"axios": "^0.27.2",
"body-parser": "^1.20.0",
"bunyan": "^1.8.15",
"codes-postaux": "^3.6.0",
"cors": "^2.8.5",
"debug": "^4.3.4",
"ejs": "^3.1.8",
"express": "^4.18.1",
"express-validator": "^6.14.2",
"geoportal-wfs-client": "https://github.com/IGNF/geoportal-wfs-client#v0.4.0",
"handlebars": "^4.7.7",
"http-proxy-agent": "^5.0.0",
"https-proxy-agent": "^5.0.1",
"lodash": "^4.17.21",
"pg": "^8.8.0",
"pg-format": "^1.0.4",
"shelljs": "^0.8.5",
"swagger-ui-dist": "^4.14.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"coveralls": "^3.1.1",
"eslint": "^8.23.0",
"expect.js": "^0.3.1",
"mocha": "^10.0.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.1.0",
"supertest": "^6.2.4"
}
}