-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.7 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.7 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": "road2",
"version": "3.0.1",
"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.2.1",
"@turf/turf": "7.3.0",
"assert": "2.1.0",
"cors": "2.8.5",
"express": "5.2.1",
"got": "14.6.6",
"helmet": "8.1.0",
"https-proxy-agent": "7.0.6",
"log4js": "6.9.1",
"nconf": "0.13.0",
"proj4": "2.20.2",
"swagger-ui-express": "5.0.1"
},
"optionalDependencies": {
"@project-osrm/osrm": "26.4.1",
"pg": "8.16.3",
"@valhallajs/valhallajs": "3.7.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",
"@project-osrm/osrm",
"@valhallajs/valhallajs",
"pg",
"@mapbox/polyline",
"@turf/turf",
"proj4",
"assert",
"helmet",
"got",
"http-proxy-agent",
"swagger-ui-express"
]
}