-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
60 lines (60 loc) · 1.6 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
{
"name": "road2",
"version": "2.2.5",
"description": "Calcul d'itinéraire",
"author": "RDEV - IGN",
"main": "src/js/road2.js",
"scripts": {
"start": "env NODE_ENV=prod node ./src/js/road2.js",
"configCheck": "node ./src/js/road2.js --configCheck",
"utest": "mocha --recursive './test/unit/mocha/**/*.js'",
"itest": "mocha --recursive './test/integration/mocha/**/*.js'",
"rtest": "HTTP_PROXY='' ./node_modules/cucumber/bin/cucumber-js ./test/functional/request/cucumber/features/req*.feature",
"ctest": "./node_modules/cucumber/bin/cucumber-js ./test/functional/configuration/cucumber/features/conf*.feature",
"lint": "eslint -c eslint.json ./src/",
"jsdoc": "jsdoc -c jsdoc.json",
"debug": "env NODE_ENV=debug node --inspect=0.0.0.0:9229 ./src/js/road2.js"
},
"dependencies": {
"@mapbox/polyline": "1.1.1",
"@turf/turf": "6.5.0",
"assert": "2.0.0",
"cors": "2.8.5",
"express": "4.18.2",
"got": "11.8.2",
"helmet": "6.0.1",
"https-proxy-agent": "5.0.1",
"log4js": "6.7.1",
"nconf": "0.12.0",
"proj4": "2.8.0",
"swagger-ui-express": "4.6.3"
},
"optionalDependencies": {
"osrm": "5.26.0",
"pg": "8.9.0"
},
"devDependencies": {
"sinon": "^7.2.7",
"mock-fs": "^4.9.0",
"cucumber": "5.1.0",
"axios": "^0.21.1",
"tunnel": "^0.0.6",
"esprima":"4.0.1"
},
"bundledDependencies": [
"cors",
"express",
"log4js",
"nconf",
"osrm",
"pg",
"@mapbox/polyline",
"@turf/turf",
"proj4",
"assert",
"helmet",
"got",
"http-proxy-agent",
"swagger-ui-express"
]
}