forked from IGNF/road2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (63 loc) · 2.04 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
62
63
64
{
"name": "road2",
"version": "1.1.1",
"description": "Calcul d'itinéraire",
"author": "RDEV - IGN",
"main": "src/js/road2.js",
"scripts": {
"start": "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": "./node_modules/cucumber/bin/cucumber-js ./test/functional/request/cucumber/features/requestTest.feature",
"crtest": "./node_modules/cucumber/bin/cucumber-js ./test/functional/request/cucumber/features/requestComplementTest.feature",
"drtest": "./node_modules/cucumber/bin/cucumber-js ./test/functional/request/cucumber/features/requestDataTest.feature",
"artest": "./node_modules/cucumber/bin/cucumber-js ./test/functional/request/cucumber/features/requestAdminTest.feature",
"ctest": "./node_modules/cucumber/bin/cucumber-js ./test/functional/configuration/cucumber/features/configurationTest.feature",
"cctest": "./node_modules/cucumber/bin/cucumber-js ./test/functional/configuration/cucumber/features/configurationComplementTest.feature",
"lint": "eslint -c eslint.json ./src/",
"jsdoc": "jsdoc -c jsdoc.json",
"debug": "node --inspect=0.0.0.0:9229 ./src/js/road2.js"
},
"dependencies": {
"@mapbox/polyline": "1.1.1",
"@turf/turf": "5.1.6",
"assert": "2.0.0",
"cors": "2.8.5",
"express": "4.16.4",
"got": "11.8.2",
"helmet": "3.21.2",
"https-proxy-agent": "5.0.0",
"log4js": "6.1.0",
"nconf": "0.10.0",
"proj4": "2.6.0",
"wkt": "0.1.1"
},
"optionalDependencies": {
"osrm": "5.25.0",
"pg": "7.17.1"
},
"devDependencies": {
"sinon": "^7.2.7",
"mock-fs": "^4.9.0",
"cucumber": "5.1.0",
"axios": "^0.21.1",
"tunnel": "^0.0.6"
},
"bundledDependencies": [
"cors",
"express",
"log4js",
"nconf",
"osrm",
"pg",
"@mapbox/polyline",
"@turf/turf",
"proj4",
"assert",
"helmet",
"wkt",
"got",
"http-proxy-agent"
]
}