-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.29 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
{
"name": "oauth2-resource-server-example",
"version": "1.0.0",
"description": "OAuth2 Resource Server (RS) example",
"author": "Marc-Aurèle DARCHE",
"license": "MIT",
"engines": {
"node": ">=12.18"
},
"scripts": {
"start": "node src/start.js",
"start:watch": "nodemon",
"test": "jest",
"posttest": "npm run lint",
"pretest:ci": "npm run lint",
"test:ci": "npm run test:coverage",
"test:unit": "echo 'NO unit tests'",
"test:integration": "jest test/integration",
"test:coverage": "jest --coverage",
"lint": "eslint --ignore-pattern='!.*.js' .",
"lint:fix": "eslint --fix --ignore-pattern='!.*.js' ."
},
"dependencies": {
"@koa/router": "10.0.0",
"bunyan": "1.8.14",
"convict": "6.0.0",
"convict-format-with-validator": "6.0.0",
"koa": "2.13.0",
"koa-bodyparser": "4.3.0",
"koa-helmet": "6.0.0",
"koa-morgan": "1.0.1",
"openapi-validator-middleware": "3.1.1",
"openid-client": "4.7.3",
"parse-bearer-token": "1.0.1",
"toml": "3.0.0",
"tracer": "1.1.4",
"yargs-parser": "18.1.3"
},
"devDependencies": {
"eslint": "7.4.0",
"eslint-config-usecases": "https://github.com/madarche/eslint-config-usecases.git#v3.1.0",
"jest": "26.6.3",
"nodemon": "2.0.6",
"supertest": "6.0.1"
}
}