-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.25 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
{
"name": "ooapi",
"description": "Open Onderwijs API Gateway",
"repository": {},
"license": "GPL v3",
"version": "1.0.0",
"main": "server.js",
"engines": {
"node": "^18"
},
"scripts": {
"mocha": "mocha",
"lint": "standard --env mocha",
"test-v4": "mocha --require test/integration.hook.js -t 240000 test/*.test.js test/**/*.test.js",
"test-v5": "TEST_OOAPI_V5=true mocha --require test/integration.hook.js -t 240000 test/*.test.js test/**/*.test.js",
"test": "npm run lint && npm run test-v4 && npm run test-v5",
"test-backend": "scripts/test-backend.js",
"other-test-backend": "scripts/other-test-backend.js",
"mock-oauth": "scripts/mock-oauth.js",
"perf-test": "scripts/perf-test.js"
},
"devDependencies": {
"express": "^4.19.2",
"express-basic-auth": "^1.2.1",
"mocha": "^10.2.0",
"standard": "*",
"testcontainers": "^10.9.0",
"yargs": "^17.7.2"
},
"dependencies": {
"ajv-formats": "2.1.1",
"express-gateway-lite": "file:vendor/express-gateway-lite",
"express-modify-response": "1.0.2",
"express-openapi-validate": "0.6.1",
"http-proxy": "^1.18.0",
"js-yaml": "^4.1.0",
"path-to-regexp": "^6.3.0",
"prom-client": "14.2.0",
"traceparent": "1.0.0"
}
}